-
Notifications
You must be signed in to change notification settings - Fork 149
/
eslint.config.mjs
60 lines (59 loc) · 1.59 KB
/
eslint.config.mjs
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
57
58
59
60
import js from '@eslint/js';
import globals from 'globals';
import reactPlugin from 'eslint-plugin-react';
export default [
js.configs.recommended,
reactPlugin.configs.flat.recommended,
{
ignores: [
'.idea/',
'*-debug.log',
'artifacts/',
'build/',
'components-dist/',
'configs/atomizer.json',
'dist/',
'node_modules/',
'npm-*.log',
'protractor-batch-artifacts/',
'results/',
'tests/functional/bootstrap.js',
],
},
{
files: ['**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}'],
languageOptions: {
...reactPlugin.configs.flat.recommended.languageOptions,
ecmaVersion: 2024,
globals: {
...globals.browser,
...globals.jest,
...globals.mocha,
...globals.node,
...globals.protractor,
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
sourceType: 'module',
},
},
plugins: {
react: reactPlugin,
},
rules: {
indent: [2, 4, { SwitchCase: 1 }],
quotes: [0, 'single'],
'dot-notation': [2, { allowKeywords: false }],
'no-console': 0,
'no-prototype-builtins': 0,
'no-unexpected-multiline': 0,
},
settings: {
react: {
version: 'detect',
},
},
},
];