-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
35 lines (35 loc) · 1.04 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
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"parser": "babel-eslint",
"rules": {
"semi": ["error", "never"],
"no-mixed-operators": "off",
"class-methods-use-this": "off",
"no-unused-vars": ["error", { "args": "none"} ],
"comma-dangle": "off",
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, { "ignore": ["electron"] }],
"linebreak-style": 0,
"react/prefer-stateless-function": 0,
"react/sort-comp": "off",
"arrow-parens": "off",
"no-use-before-define": "off",
"no-shadow": "off",
"react/no-did-mount-set-state": "off",
"no-param-reassign": "off",
"object-curly-newline": "off",
"curly": ["error", "all"],
"no-underscore-dangle": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/interactive-supports-focus": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-autofocus": "off"
}
}