forked from vulkanojs/vulkano-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
61 lines (61 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"root": true,
"parser": "@babel/eslint-parser",
"extends": [
"airbnb"
],
"parserOptions": {
"requireConfigFile": false,
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true,
"browser": true,
"es6": true,
"jquery": true,
"mocha": true
},
"globals": {
"app": true,
"io": true,
"Promise": true,
"Paginate": true,
"Upload": true,
"Utils": true,
"i18n": true,
"Cloud": true,
"Crontab": true,
"VSError": true,
"Filter": true,
"ABS_PATH": true,
"APP_PATH": true,
"CORE_PATH": true,
"PUBLIC_PATH": true
},
"settings": {
"import/resolver": {
"alias": {
"extensions": [".js"],
"map": [
["@client", "./client"]
]
}
},
"react": {
"version": "999.999.999"
}
},
"rules": {
"arrow-body-style": [0],
"comma-dangle": [0],
"guard-for-in": [0],
"no-console": [0],
"no-underscore-dangle": [0],
"no-throw-literal": [0],
"no-unneeded-ternary": [0],
"padded-blocks": [0],
"space-in-parens": [0],
"camelcase": [0]
}
}