-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
executable file
·48 lines (48 loc) · 1.12 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"react/jsx-filename-extension": [0],
"react/react-in-jsx-scope": [0],
"react/jsx-tag-spacing": [0],
"react/jsx-space-before-closing": [0],
"react/prefer-stateless-function": [0],
"jsx-quotes": [0],
"comma-dangle": [0],
"import/extensions": [0],
"import/no-unresolved": [0],
"space-before-function-paren": [0],
"class-methods-use-this": [0],
"import/no-named-as-default": [0],
"import/no-extraneous-dependencies": [0],
"global-require": [0],
"no-param-reassign": [0],
"react/require-default-props": [0],
"react/forbid-prop-types": [0],
"react/no-unused-prop-types": [1],
"jsx-a11y/href-no-hash": "off"
},
"globals": {
"require": true,
"window": true,
"document": true,
"navigator": true,
"fetch": true,
"it": true,
"describe": true,
"beforeAll": true,
"beforeEach": true,
"afterAll": true,
"afterEach": true,
"jest": true,
"expect": true
},
"settings": {
"import/resolver": {
"babel-module": {}
}
},
"env": {
"browser": true
}
}