-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
39 lines (39 loc) · 1.12 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
{
"defaultSeverity": "warning",
"rulesDirectory": [
"./node_modules/tslint-lines-between-class-members"
],
"rules": {
"class-name": true,
"comment-format": false,
"interface-name": false,
"jsdoc-format": true,
"lines-between-class-members": false,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"no-bitwise": false,
"no-console": false,
"no-debugger": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-implicit-dependencies": false,
"no-internal-module": true,
"no-shadowed-variable": false,
"no-switch-case-fall-through": true,
"no-unused-expression": [true, "allow-tagged-template"],
"no-var-keyword": true,
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"triple-equals": [true, "allow-null-check"],
"variable-name": [true, "ban-keywords"],
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive",
"grouped-imports": true
}
]
},
"extends": ["tslint:latest", "tslint-config-prettier"]
}