forked from pluralsight/classic-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
40 lines (39 loc) · 899 Bytes
/
.eslintrc.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
const IGNORE = 0
const WARNING = 1
const ERROR = 2
module.exports = {
root: true,
env: {
browser: true,
es6: true,
jest: true
},
extends: [
'standard',
'standard-react',
'eslint:recommended',
'plugin:jest/recommended',
'plugin:react/recommended',
'plugin:prettier/recommended',
'prettier/flowtype',
'prettier/react',
'prettier/standard'
],
plugins: ['jest', 'react', 'react-hooks', 'prettier'],
rules: {
'import/extensions': [WARNING, 'always', { ignorePackages: true }],
'react-hooks/exhaustive-deps': WARNING,
'react-hooks/rules-of-hooks': ERROR,
'react/display-name': WARNING,
'react/jsx-no-bind': IGNORE,
'react/no-unescaped-entities': WARNING
},
overrides: [
{
files: ['packages/site/pages/**/*.js', '**/__stories__/*.js'],
rules: {
'react/jsx-key': [IGNORE]
}
}
]
}