-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
53 lines (53 loc) · 1.22 KB
/
.eslintrc.json
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
49
50
51
52
53
{
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:flowtype/recommended",
"airbnb",
"prettier"
],
"plugins": ["react", "flowtype", "prettier"],
"rules": {
"import/no-named-as-default": 0,
"react/jsx-filename-extension": [
"error",
{ "extensions": [".js", ".jsx"] }
],
"quotes": ["error", "single", { "avoidEscape": true }],
"flowtype/no-types-missing-file-annotation": 0,
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": ["Link"],
"specialLink": ["to"]
}
],
"react/jsx-props-no-spreading": 0,
"react/prop-types": 0,
"react/require-default-props": 0,
"no-unused-vars": 0,
"react/default-props-match-prop-types": 0,
"react/destructuring-assignment": 0,
"arrow-body-style": 0,
"no-shadow": 0,
"spaced-comment": 0,
"import/no-cycle": 0,
"import/prefer-default-export": 0,
"global-require": 0,
"prefer-destructuring": 0
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "./"]
}
}
}
}