diff --git a/docshell/test/browser/.eslintrc.js b/docshell/test/browser/.eslintrc.js new file mode 100644 index 000000000000..b1c842d8a6db --- /dev/null +++ b/docshell/test/browser/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/browser-test" + ] +}; diff --git a/docshell/test/chrome/.eslintrc.js b/docshell/test/chrome/.eslintrc.js new file mode 100644 index 000000000000..a3b8c411daf9 --- /dev/null +++ b/docshell/test/chrome/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/chrome-test" + ] +}; diff --git a/docshell/test/iframesandbox/.eslintrc.js b/docshell/test/iframesandbox/.eslintrc.js new file mode 100644 index 000000000000..8c8be53cd53d --- /dev/null +++ b/docshell/test/iframesandbox/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/mochitest-test" + ] +}; diff --git a/docshell/test/mochitest/.eslintrc.js b/docshell/test/mochitest/.eslintrc.js new file mode 100644 index 000000000000..8c8be53cd53d --- /dev/null +++ b/docshell/test/mochitest/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/mochitest-test" + ] +}; diff --git a/docshell/test/navigation/.eslintrc.js b/docshell/test/navigation/.eslintrc.js new file mode 100644 index 000000000000..6746617eebd0 --- /dev/null +++ b/docshell/test/navigation/.eslintrc.js @@ -0,0 +1,8 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/browser-test", + "plugin:mozilla/mochitest-test", + ] +}; diff --git a/docshell/test/unit/.eslintrc.js b/docshell/test/unit/.eslintrc.js new file mode 100644 index 000000000000..70fe35407782 --- /dev/null +++ b/docshell/test/unit/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/xpcshell-test" + ] +}; diff --git a/docshell/test/unit_ipc/.eslintrc.js b/docshell/test/unit_ipc/.eslintrc.js new file mode 100644 index 000000000000..70fe35407782 --- /dev/null +++ b/docshell/test/unit_ipc/.eslintrc.js @@ -0,0 +1,7 @@ +"use strict"; + +module.exports = { + "extends": [ + "plugin:mozilla/xpcshell-test" + ] +};