-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
40 lines (40 loc) · 1011 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
{
"extends": [
"airbnb",
"plugin:jsx-a11y/recommended",
"plugin:flowtype/recommended",
"prettier",
"prettier/flowtype",
"prettier/react"
],
"env": {
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"plugins": ["flowtype", "jsx-a11y", "prettier"],
"rules": {
"jsx-a11y/label-has-for": [
"error",
{ "components": ["label"], "allowChildren": true }
],
"prettier/prettier": [
"error",
{ "trailingComma": "es5", "singleQuote": true }
],
"no-await-in-loop": 0,
"no-return-await": 0,
"react/jsx-filename-extension": 0,
"react/no-array-index-key": 0,
"react/require-default-props": 0,
"import/extensions": 0,
"import/first": 0,
"import/no-absolute-path": 0,
"import/no-duplicates": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/no-unresolved": 0,
"import/no-webpack-loader-syntax": 0
}
}