-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
57 lines (50 loc) · 1.18 KB
/
.eslintrc.js
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
module.exports = {
env: {
node: true,
browser: true,
commonjs: true,
es2021: true,
},
extends: [
'eslint:recommended'
],
parserOptions: {
ecmaVersion: 12,
},
rules: {
'semi': ['error', 'always'],
'quotes': ['error', 'single'],
'indent': ['error', 'tab'],
'no-multi-spaces': ['warn'],
'no-unused-vars': 'off'
},
globals: {
'ContextMenuRenderer': 'readonly',
'registerCommand': 'readonly',
'Story': 'readonly',
'StoryHelper': 'readonly',
'ProjectMeta': 'readonly',
'onSceneSelect': 'readonly',
'currentChapter': 'readonly',
'removeParagraph': 'readonly',
'addNewParagraph': 'readonly',
'renameColumn': 'readonly',
'TreeNode': 'readonly',
'TreeBorkLine': 'readonly',
'TreeCurvyLine': 'readonly',
'TreeLine': 'readonly',
'NodeIdRenderer': 'readonly',
'NodeContextRenderer': 'readonly',
'CollisionReductionPass': 'readonly',
'LineValidator': 'readonly',
'ActionParser': 'readonly',
'ActionType': 'readonly',
'ConditionParser': 'readonly',
'getCells': 'readonly',
'toggleColumnCollapse': 'readonly',
'ColumnHeader': 'readonly',
'Cell': 'readonly',
'localization': 'readonly',
'getLocalized': 'readonly',
}
};