-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
40 lines (40 loc) · 1.03 KB
/
.eslintrc
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
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"globals": {
"createDiv": true
},
"rules": {
"indent": [2, 4, { "SwitchCase": 1 }],
"max-len": [0],
"object-curly-newline": [0],
"import/no-extraneous-dependencies": [0],
"no-restricted-syntax": [0],
"class-methods-use-this": [0],
"react/jsx-filename-extension": ["warn", { "extensions": [".js", ".jsx"] }],
"react/jsx-props-no-spreading": [0],
"react/jsx-indent-props": [2, 4],
"react/jsx-indent": ["error", 4],
"react/prop-types": [0],
"react/no-unescaped-entities": [0],
"react/function-component-definition": [0],
"react/react-in-jsx-scope": [0]
}
}