forked from mkscho63/sta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
56 lines (56 loc) · 1.35 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
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["google"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"ItemSheet": "readonly",
"game": "readonly",
"mergeObject": "readonly",
"CONFIG": "writable",
"duplicate": "readonly",
"$": "readonly",
"Tabs": "readonly",
"Hooks": "readonly",
"Items": "readonly",
"loadTemplates": "readonly",
"Combat": "writable",
"canvas": "readonly",
"ActorSheet": "readonly",
"Actor": "readonly",
"Actors": "readonly",
"fetchSpell": "readonly",
"TextEditor": "readonly",
"ui": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"html"
],
"rules": {
"arrow-body-style": 0,
"comma-dangle": 0,
"linebreak-style": ["error", "windows"],
"indent": ["error", 2],
"import/extensions": "off",
"max-len": ["error", { "ignoreComments": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }],
"no-async-promise-executor": 0,
"no-await-in-loop": 0,
"no-console": 0,
"no-empty-function": 0,
"require-jsdoc" : 0,
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"],
"no-restricted-syntax": 0,
"no-tabs": 0,
"no-trailing-spaces": 0,
"no-unused-vars": 0,
"no-useless-constructor": 0
}
}