forked from SteamGridDB/steamgriddb-manager
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
30 lines (30 loc) · 834 Bytes
/
.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
{
"env": {
"commonjs": true,
"es6": true,
"node": true,
"browser": true
},
"extends": ["airbnb"],
"settings": {
"import/core-modules": ["electron"]
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"BigInt": true
},
"rules": {
"indent": ["error", 2],
"react/jsx-indent": ["error", 2],
"class-methods-use-this": ["off"],
"no-underscore-dangle": ["off"],
"no-param-reassign": ["off"],
"react/forbid-prop-types": ["off"],
"react/destructuring-assignment": ["off"],
"jsx-a11y/click-events-have-key-events": ["off"],
"jsx-a11y/no-static-element-interactions": ["off"],
"linebreak-style": ["off"],
"arrow-body-style": ["off"]
}
}