-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
41 lines (41 loc) · 1.1 KB
/
.eslintrc.json
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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"react",
"jsx-a11y",
"import",
"prettier"
],
"env": {
"browser": true,
"node": true
},
"rules": {
"indent": [
"error",
4
],
"react/jsx-indent": [
"error",
4
],
"react/jsx-filename-extension": ["off"],
"react/destructuring-assignment":["off"],
"react/no-did-update-set-state":["off"],
"react/prefer-stateless-function":["off"],
"react/require-default-props":["off"],
"no-console":["off"],
"no-underscore-dangle":["off"],
"react/forbid-prop-types":["off"],
"operator-linebreak": ["off"],
"react/jsx-indent-props":["off"],
"arrow-body-style":["off"],
"no-plusplus":["off"],
"prefer-destructuring":["off"],
"import/no-useless-path-segments":["off"],
"jsx-a11y/label-has-for": ["off"],
"jsx-a11y/label-has-associated-control": ["off"],
"no-restricted-syntax": ["off"]
}
}