-
Alexandre Poirot authored
Bug 1700106 - [devtools] Remove now-useless eslint files related to mochitests. r=jdescottes,Standard8 I kept a few having some overrides. But they may be irrelevant. And I kept some eslint files for all folder that aren't matching the pattern matching "**/test*/**/browser*/". Ideally we would rename these folder to match. Last but not least, I identified one case where we were using mochitest file for xpcshell tests! Differential Revision: https://phabricator.services.mozilla.com/D109481
Alexandre Poirot authoredBug 1700106 - [devtools] Remove now-useless eslint files related to mochitests. r=jdescottes,Standard8 I kept a few having some overrides. But they may be irrelevant. And I kept some eslint files for all folder that aren't matching the pattern matching "**/test*/**/browser*/". Ideally we would rename these folder to match. Last but not least, I identified one case where we were using mochitest file for xpcshell tests! Differential Revision: https://phabricator.services.mozilla.com/D109481
.eslintrc.js 241 B
"use strict";
// General rule from /.eslintrc.js only accept folders matching **/test*/browser*/
// where is this folder doesn't match, so manually apply browser test config
module.exports = {
extends: ["plugin:mozilla/browser-test"],
};