-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
43 lines (39 loc) · 854 Bytes
/
.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
{
"env": {
"browser": true,
"jest": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"classes": true,
"jsx": true
}
},
"extends": [
"airbnb"
],
"rules": {
"import/extensions": ["off"],
"import/no-named-as-default": ["off"],
"import/no-named-as-default-member": ["off"],
"import/no-absolute-path": ["off"],
"import/no-extraneous-dependencies": ["off"],
"import/no-duplicates": ["off"],
"import/no-unresolved": ["off"],
"no-unexpected-multiline": ["warn"],
"react/prop-types": ["off"],
"react/jsx-filename-extension": [1, { "extensions": [".jsx", ".tsx"] }]
},
"plugins": [
"import",
"react"
],
"globals": {
"window": true,
"document": true
}
}