Bug 1251003 - Change .eslintrc files to .eslintrc.js to avoid obsolete config file format. r=mossop

MozReview-Commit-ID: JrbFxQ5rj6I
This commit is contained in:
Mark Banner
2016-10-18 08:38:10 +01:00
parent 8b1181556d
commit 233309fbe2
442 changed files with 1557 additions and 1077 deletions

View File

@@ -1,4 +0,0 @@
{
// Extend from the shared list of defined globals for mochitests.
"extends": "../../../.eslintrc.mochitests"
}

View File

@@ -0,0 +1,6 @@
"use strict";
module.exports = {
// Extend from the shared list of defined globals for mochitests.
"extends": "../../../.eslintrc.mochitests.js"
};

View File

@@ -1,4 +0,0 @@
{
// Extend from the shared list of defined globals for mochitests.
"extends": "../../../../.eslintrc.xpcshell"
}

View File

@@ -0,0 +1,6 @@
"use strict";
module.exports = {
// Extend from the shared list of defined globals for mochitests.
"extends": "../../../../.eslintrc.xpcshell.js"
};