-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
50 lines (50 loc) · 1.47 KB
/
.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
44
45
46
47
48
49
50
{
"extends": [
"eslint-config-standard",
"eslint-config-airbnb"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"rules": {
"arrow-parens": "off",
"comma-dangle": "off",
"generator-star-spacing": ["error", {
"before": true,
"after": false
}],
"function-paren-newline": "off",
"implicit-arrow-linebreak": "off",
"import/no-unresolved": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-mixed-spaces-and-tabs": "error",
"no-tabs": "off",
"no-unused-vars": "off",
"object-curly-newline": "off",
"operator-linebreak": "off",
"prefer-destructuring": "off",
"react/destructuring-assignment": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/jsx-uses-react": "warn",
"react/prop-types": "off",
"semi": "off",
"space-before-function-paren": "off",
"no-plusplus": "off",
"array-callback-return": "off",
"jsx-a11y/alt-text": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/jsx-wrap-multilines": "off",
"react/no-array-index-key": "off",
"react/sort-comp": "off"
},
"plugins": ["react", "node", "promise", "standard", "import", "prettier"],
"parser": "babel-eslint"
}