-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (31 loc) · 890 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
{
"extends": [
"airbnb-standard",
"plugin:jest/recommended"
],
"parser": "babel-eslint",
"env": {
"browser": true
},
"rules": {
"semi": [2, "never"],
"max-len": [2, { "code": 160 }],
"no-tabs": 0,
"indent": [2, "tab", { "SwitchCase": 1 }],
"object-curly-newline": [2, { "ExportDeclaration": { "minProperties": 5 } }],
"standard/no-callback-literal": 0,
"react/jsx-indent": [2, "tab"],
"react/jsx-indent-props": [2, "tab"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/destructuring-assignment": 0,
// Todo: Make Musicion a11y compatible.
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/mouse-events-have-key-events": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0
},
"settings": {
"import/core-modules": [ "electron" ]
},
"plugins": [ "jest" ]
}