-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
57 lines (57 loc) · 1.37 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"extends": ["airbnb-base"],
"plugins": ["prettier", "jest"],
"env": {
"jest/globals": true,
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"parserOptions": {
"sourceType": "module"
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"modules": true,
"spread": true,
"globalReturn": true
},
"rules": {
"no-console": "off",
"max-classes-per-file": "off",
"no-bitwise": "off",
"no-param-reassign": "off",
"consistent-return": "off",
"import/extensions": "off",
"comma-dangle": "off",
"no-plusplus": "off",
"radix": "off",
"no-tabs": "off",
"no-use-before-define": "off",
"no-mixed-spaces-and-tabs": "off",
"func-names": "off",
"operator-linebreak": "off",
"no-new": "off",
"import/prefer-default-export": "off",
"no-continue": "off",
"class-methods-use-this": "off",
"implicit-arrow-linebreak": "off",
"prefer-destructuring": "off",
"prettier/prettier": [
"error",
{ "singleQuote": true, "tabWidth": 2, "semi": true, "trailingComma": "es5", "printWidth": 80, "useTabs": true }
],
"indent": "off"
},
"globals": {
"Module": "readonly",
"dat": "readonly",
"Stats": "readonly",
"ccallArrays": "readonly",
"glMatrix": "readonly"
}
}