-
Notifications
You must be signed in to change notification settings - Fork 15
/
tslint.json
57 lines (57 loc) · 1.41 KB
/
tslint.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": [
"recommended",
"prettier",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"interface-name": {
"options": ["never-prefix"]
},
"max-classes-per-file": [true, 32],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"arrow-parens": [true, "ban-single-arg-parens"],
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"quotemark": false,
"member-access": [true, "no-public"],
"member-ordering": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-console": false,
"no-debugger": false,
"no-empty": false,
"no-empty-interface": false,
"no-shadowed-variable": false,
"no-unused-variable": false,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"@typescript-eslint/restrict-template-expressions": false,
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-separator",
"check-type",
"check-typecast"
]
}
},
"linterOptions": {
"exclude": [
"src/importer/pkg/**/*.js",
"src/engine-v2/pkg/**/*.js",
"src/schemas/*.js",
"app/config",
"app/node_modules",
"public/**/*.js",
"lib/**/*.js",
"config/**/*.js",
"build/**/*.js",
"node_modules/**/*.ts",
"sd.js/**/*.ts",
"target/**/*.js",
"runtime/**/*.ts"
]
}
}