-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
67 lines (67 loc) · 1.83 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
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
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"react-app",
"airbnb",
"plugin:prettier/recommended",
"prettier/react"
],
"plugins": [
"prettier"
],
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
},
"rules": {
"prettier/prettier": [
"warn",
{"endOfLine":"auto"}
],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".js",
".jsx"
]
}
],
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-unused-expressions": "off",
"spaced-comment": ["warn", "always"],
"no-unreachable": "warn",
"no-unused-vars": "off",
"no-param-reassign": "off",
"no-console": "off",
"no-use-before-define": "off",
"no-nested-ternary": "off",
"no-underscore-dangle": "off",
"import/no-unresolved": "off",
"no-constant-condition": "off",
"global-require": "off",
"react/no-array-index-key": "off",
"react/no-unescaped-entities": "off",
"react/destructuring-assignment": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off",
"react/no-danger": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"react/default-props-match-prop-types": "off",
"react/no-unused-prop-types": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off"
}
}