-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (34 loc) · 891 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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true
},
"plugins": ["flowtype"],
"extends": ["plugin:flowtype/recommended", "airbnb"],
"settings": {
"react": {
"pragma": "React",
"version": "16.1"
}
},
"rules": {
"no-plusplus": 0,
"arrow-parens": [1, "as-needed", { "requireForBlockBody": true }],
"comma-dangle": [1, "never"],
"consistent-return": 0,
"func-names": 0,
"global-require": 0,
"linebreak-style": 0,
"no-mixed-operators": 0,
"no-underscore-dangle": 0,
"no-unused-vars": [1, {"args": "none"}],
"object-curly-newline": [1, { "consistent": true }],
"import/extensions": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": [2, {"devDependencies": true}],
"jsx-a11y/href-no-hash": 0
}
}