-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.eslintrc
More file actions
38 lines (38 loc) · 962 Bytes
/
.eslintrc
File metadata and controls
38 lines (38 loc) · 962 Bytes
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
{
"extends": "eslint-config-airbnb",
"rules": {
"indent": [1, 4, {"SwitchCase": 1}],
"no-console": [0],
"func-names": [0],
"semi": [0],
"no-extra-semi": [1],
"space-before-function-paren": [0],
"no-else-return": [0],
"space-infix-ops": [0],
"react/prefer-es6-class": [0],
"react/prefer-stateless-function": [0],
"import/no-unresolved": [0],
"global-require": [0],
"import/no-extraneous-dependencies": [0],
"no-unused-vars": [1],
"max-len": [1],
"jsx-quotes": [1],
"jsx-a11y/img-has-alt": [1],
"jsx-a11y/img-redundant-alt": [1],
"comma-dangle": [1],
"react/jsx-closing-bracket-location": [0],
"eqeqeq": [0],
"react/jsx-indent": [1],
"quotes": [1],
"react/jsx-curly-spacing": [1],
"no-use-before-define": [0]
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"globals": {
"__PREFIX_LINKS__": true
}
}