forked from mirrors/gecko-dev
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
10 lines
362 B
JavaScript
10 lines
362 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
// Extend from the shared list of defined globals for mochitests.
|
|
extends: "../../../../../.eslintrc.xpcshell.js",
|
|
};
|