-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheslint.config.cjs
56 lines (52 loc) · 1.32 KB
/
eslint.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// eslint.config.cjs
const { defineFlatConfig } = require('eslint-define-config');
const babelParser = require('@babel/eslint-parser'); // IMPORTANT: require the parser
const jestPlugin = require('eslint-plugin-jest');
module.exports = defineFlatConfig([
{
ignores: [
'**/slimselect.min.js',
'src/themes/*/js/',
'src/themes/*/storybook/bcl-stories'
]
},
{
files: ['**/*.js'],
// Must provide an object parser, not just a string
languageOptions: {
parser: babelParser,
// parserOptions is where you set Babel parser config
parserOptions: {
// Tells babel-parser to not require a Babel config file
requireConfigFile: false,
ecmaVersion: 'latest',
sourceType: 'module'
},
globals: {
process: 'readonly',
__dirname: 'readonly',
module: 'readonly',
require: 'readonly',
window: 'readonly',
document: 'readonly'
}
},
plugins: {
jest: jestPlugin
},
rules: {
'import/no-extraneous-dependencies': 'off',
'no-param-reassign': 'off',
'import/extensions': 'off',
'import/no-webpack-loader-syntax': 'off',
'new-cap': 'off',
'camelcase': 'off'
}
},
{
files: ['src/**/*.test.js'],
rules: {
'no-undef': 'off'
}
}
]);