-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
108 lines (108 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react",
"plugin:prettier/recommended",
"prettier/standard",
"prettier/react"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"ecmaFeatures": {
"legacyDecorators": true,
"jsx": true
}
},
"settings": {
"react": {
"version": "16"
}
},
"rules": {
"space-before-function-paren": 0,
"react/prop-types": 0,
"react/jsx-handler-names": 0,
"react/jsx-fragments": 0,
"react/no-unused-prop-types": 0,
"import/export": 0,
"semi": [
"error",
"always",
{
"omitLastInOneLineBlock": true
}
],
"no-unused-vars": 1,
"spaced-comment": [
"error",
"always"
],
"keyword-spacing": [
"error",
{
"after": true
}
],
"lines-between-class-members": [
"error",
"always"
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"import/no-unresolved": [
2,
{
"commonjs": true,
"amd": true
}
],
"import/named": 2,
"import/namespace": 0,
"import/no-self-import": 2,
"import/first": 2,
"import/order": 2,
"import/no-named-as-default": 0
},
"overrides": [
{
"files": [
"**/test/**/*.js",
"**/*.test.js"
],
"env": {
"es6": true,
"jest": true,
"node": true
},
"rules": {
"no-unused-vars": 0,
"jest/no-disabled-tests": 0,
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jest/recommended"
]
}
]
}