-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.json
34 lines (34 loc) · 900 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
31
32
33
34
{
"env": {
"browser": true,
"es2020": true
},
"extends": "airbnb-base",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"ignorePatterns": ["/tests/*", "/examples/*"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"class-methods-use-this": "off",
"no-underscore-dangle": "off",
"no-undef": "off",
"func-names": "off",
"new-cap": "off",
"no-multi-assign":"off",
"no-restricted-syntax":"off",
"no-plusplus":"off",
"no-param-reassign":"off",
"prefer-destructuring": "off",
"max-len": [2, 175, 4],
"prefer-rest-params" : "off",
"consistent-return" : "off",
"linebreak-style" : "off",
"no-console" : "off",
"space-infix-ops": "off"
}
}