-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.js
40 lines (39 loc) · 948 Bytes
/
react.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 OFF = 0;
const WARNING = 1;
const ERROR = 2;
module.exports = {
extends: [
'./base.js',
'plugin:react/recommended',
'prettier/react',
],
plugins: [
'react',
'react-hooks',
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
rules: {
'react/display-name': OFF,
'react/no-multi-comp': [WARNING, { 'ignoreStateless': true }],
'react/no-unused-prop-types': ERROR,
'react/prop-types': ERROR,
'react/jsx-filename-extension': OFF,
'react/jsx-uses-react': ERROR,
'react/jsx-uses-vars': ERROR,
'react/react-in-jsx-scope': ERROR,
'react/jsx-curly-brace-presence': [ERROR, { props: "never", children: "never" }],
'react/destructuring-assignment': [OFF, 'always'],
'react-hooks/rules-of-hooks': ERROR,
'react-hooks/exhaustive-deps': WARNING,
'react/no-did-update-set-state': OFF,
},
settings: {
react: {
version: 'detect',
},
},
};