-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
62 lines (62 loc) · 1.52 KB
/
tslint.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
62
{
"extends": [
"typestrict",
"tslint:latest",
"tslint-config-prettier"
],
"rulesDirectory": [
"./node_modules/tslint-eslint-rules/dist/rules"
],
"rules": {
"interface-name": [
true,
"always-prefix"
],
"no-invalid-template-strings": true,
"no-sparse-arrays": true,
"no-object-literal-type-assertion": true,
"prefer-conditional-expression": true,
"prefer-object-spread": true,
"no-this-assignment": true,
"ban-comma-operator": true,
"no-duplicate-switch-case": true,
"no-duplicate-imports": true,
"no-implicit-dependencies": false,
"no-constant-condition": false,
"no-empty-character-class": true,
"no-extra-boolean-cast": true,
"no-extra-semi": true,
"no-invalid-regexp": true,
"no-regex-spaces": true,
"no-unexpected-multiline": true,
"valid-typeof": true,
"triple-equals": true,
"no-eval": true,
"no-switch-case-fall-through": true,
"no-duplicate-variable": true,
"no-string-throw": true,
"no-unused-expression": true,
"radix": true,
"no-var-keyword": true,
"no-console": true,
"no-debugger": true,
"no-invalid-this": false,
"object-literal-sort-keys": false,
"typedef": [
true,
"call-signature"
],
"ordered-imports": false,
"no-commented-code": true,
"no-submodule-imports": false,
"no-use-before-declare": false
},
"linterOptions": {
"exclude": [
"node_modules/**",
"**/*.spec.ts?(x)",
"test/**",
"**/*.json"
]
}
}