-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy patheslint.config.js
78 lines (75 loc) · 2.14 KB
/
eslint.config.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const { defineConfig } = require('eslint/config');
const { includeIgnoreFile } = require('@eslint/compat');
const path = require('node:path');
const globals = require('globals');
const gitignorePath = path.resolve(__dirname, '.gitignore');
const js = require('@eslint/js');
const babelParser = require('@babel/eslint-parser');
const reactPlugin = require('eslint-plugin-react');
const jestPlugin = require('eslint-plugin-jest');
module.exports = defineConfig([
includeIgnoreFile(gitignorePath), // Load ignores from .gitignore
js.configs.recommended,
reactPlugin.configs.flat.recommended,
{
files: ['**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx'],
languageOptions: {
parser: babelParser,
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
requireConfigFile: false
},
globals: {
...globals.builtin,
...globals.browser,
...globals.es6,
...globals.node,
}
},
settings: {
react: {
version: 'detect',
},
},
rules: {
'indent': ['error', 2, { 'SwitchCase': 1 }],
'linebreak-style': ['error', 'unix'],
'no-trailing-spaces': 'error',
'eol-last': 'error',
'space-in-parens': ['error', 'never'],
'no-multiple-empty-lines': 'warn',
'prefer-const': 'error',
'space-infix-ops': 'error',
'no-useless-escape': 'off',
'require-atomic-updates': 'off',
'react/jsx-uses-vars': 'warn',
'react/jsx-uses-react': 'warn',
'react/react-in-jsx-scope': 'warn',
'no-console': 'off',
'no-case-declarations': 'off',
'quotes': ['error', 'single'],
'no-var': 'error',
'no-prototype-builtins': 'off',
'curly': ['error', 'all'],
'react/no-deprecated': 'off',
'react/prop-types': 'off',
'react/no-string-refs': 'off',
}
},
{
files: ['**/*.test.js', '**/*.test.jsx', '**/*.test.ts', '**/*.test.tsx'],
plugins: {
jest: jestPlugin
},
languageOptions: {
globals: {
...globals.builtin,
...globals.browser,
...globals.es6,
...globals.node,
...globals.jest
}
},
}
]);