-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
43 lines (43 loc) · 908 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
{
"extends": "airbnb",
"plugins": [
],
"rules": {
"no-console": 0,
"eqeqeq": 0,
"strict": 0,
"space-before-function-paren": 0,
"func-names": 0,
"comma-dangle": 1,
"prefer-arrow-callback": 0,
"object-curly-spacing": 0,
"max-len": [2, 120, 4,
{
"ignoreComments": true,
"ignoreUrls": true,
"ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\("
}
],
"arrow-body-style": 0,
"react/prop-types": 0,
"react/jsx-no-bind": [2,
{
"allowArrowFunctions": true
}
],
"jsx-a11y/anchor-has-content": [ 2, {
"components": ["Anchor"],
}],
"react/sort-comp": 0,
"no-unused-vars": [2, { "varsIgnorePattern": "^styles$" }],
"consistent-return": 0
},
"globals": {
"makeXhr": false,
"ga": false
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8
}
}