forked from mozilla/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c89079
commit 6a7ac6b
Showing
16 changed files
with
273 additions
and
200 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,7 @@ repos: | |
- "[email protected]" | ||
- "[email protected]" | ||
- repo: https://github.com/eslint/eslint | ||
rev: v8.56.0 | ||
rev: v8.57.0 | ||
hooks: | ||
- id: eslint | ||
additional_dependencies: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/* | ||
* 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 https://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const js = require('@eslint/js'); | ||
const globals = require('globals'); | ||
const eslintConfigPrettier = require('eslint-config-prettier'); | ||
|
||
const baseRules = { | ||
// Require strict mode directive in top level functions | ||
// https://eslint.org/docs/rules/strict | ||
strict: ['error', 'function'], | ||
|
||
// Use type-safe equality operators | ||
// https://eslint.org/docs/rules/eqeqeq | ||
eqeqeq: ['error', 'always'], | ||
|
||
// Treat var statements as if they were block scoped | ||
// https://eslint.org/docs/rules/block-scoped-var | ||
'block-scoped-var': 'error', | ||
|
||
// Disallow Use of alert, confirm, prompt | ||
// https://eslint.org/docs/rules/no-alert | ||
'no-alert': 'error', | ||
|
||
// Disallow eval() | ||
// https://eslint.org/docs/rules/no-eval | ||
'no-eval': 'error', | ||
|
||
// Disallow empty functions | ||
// https://eslint.org/docs/rules/no-empty-function | ||
'no-empty-function': 'error', | ||
|
||
// Require radix parameter | ||
// https://eslint.org/docs/rules/radix | ||
radix: 'error', | ||
|
||
// Disallow the use of `console` | ||
// https://eslint.org/docs/rules/no-console | ||
'no-console': 'error' | ||
}; | ||
|
||
const extendedRules = { | ||
// Require `let` or `const` instead of `var` | ||
// https://eslint.org/docs/rules/no-var | ||
'no-var': 'error', | ||
|
||
// Require `const` declarations for variables that are never reassigned after declared | ||
// https://eslint.org/docs/rules/prefer-const | ||
'prefer-const': 'error' | ||
}; | ||
|
||
const nodeRules = { | ||
// Require strict mode directive in global scope | ||
// https://eslint.org/docs/rules/strict | ||
strict: ['error', 'global'] | ||
}; | ||
|
||
const customGlobals = { | ||
Mozilla: true, | ||
site: true | ||
}; | ||
|
||
const testingGlobals = { | ||
sinon: true | ||
}; | ||
|
||
module.exports = [ | ||
js.configs.recommended, | ||
eslintConfigPrettier, | ||
{ | ||
ignores: [ | ||
'media/js/libs/**/*.js', | ||
'media/js/ie/libs/**/*.js', | ||
'tests/unit/dist/**/*.js', | ||
'contentful_migrations/**/*.cjs', | ||
'docs/_build/**/*.js' | ||
] | ||
}, | ||
{ | ||
files: ['media/js/**/*.js'], | ||
languageOptions: { | ||
sourceType: 'script', | ||
globals: { | ||
...customGlobals, | ||
...globals.browser, | ||
...globals.commonjs | ||
} | ||
}, | ||
rules: baseRules | ||
}, | ||
{ | ||
files: ['media/js/**/*.es6.js'], | ||
languageOptions: { | ||
ecmaVersion: 2017, | ||
sourceType: 'module', | ||
globals: { | ||
...customGlobals, | ||
...globals.browser, | ||
...globals.commonjs | ||
} | ||
}, | ||
rules: { | ||
...baseRules, | ||
...extendedRules | ||
} | ||
}, | ||
{ | ||
// JS files where we support native modern JS. | ||
files: [ | ||
'media/js/firefox/welcome/**/*.js', | ||
'media/js/firefox/whatsnew/**/*.js', | ||
'media/js/firefox/firstrun/**/*.js' | ||
], | ||
languageOptions: { | ||
ecmaVersion: 'latest', | ||
globals: customGlobals | ||
}, | ||
rules: { | ||
...baseRules, | ||
...extendedRules | ||
} | ||
}, | ||
{ | ||
// JS Jasmine test files. | ||
files: ['tests/unit/**/*.js'], | ||
languageOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
globals: { | ||
...customGlobals, | ||
...testingGlobals, | ||
...globals.browser, | ||
...globals.jasmine | ||
} | ||
}, | ||
rules: { | ||
...baseRules, | ||
...extendedRules | ||
} | ||
}, | ||
{ | ||
// JS build files for local dev. | ||
files: [ | ||
'eslint.config.js', | ||
'webpack.config.js', | ||
'webpack.static.config.js', | ||
'webpack.test.config.js' | ||
], | ||
languageOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'script', | ||
globals: { | ||
...globals.node, | ||
...globals.commonjs | ||
} | ||
}, | ||
rules: { | ||
...baseRules, | ||
...extendedRules, | ||
...nodeRules | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.