-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
45 lines (45 loc) · 1.19 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
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-config-prettier"],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"deprecation": true,
"no-implicit-dependencies": [true, "dev", "optional"],
"no-submodule-imports": false,
"eofline": false,
"indent": false,
"member-access": [true, "no-public"],
"ordered-imports": [true],
"member-ordering": [false],
"curly": false,
"interface-name": [true],
"array-type": [false],
"no-empty-interface": false,
"prefer-conditional-expression": false,
"no-empty": false,
"arrow-parens": false,
"object-literal-sort-keys": false,
"no-unused-expression": false,
"max-classes-per-file": false,
"variable-name": [false],
"one-line": [false],
"one-variable-per-declaration": [false],
"promise-function-async": true,
"no-null-keyword": false,
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"variable-declaration",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
]
},
"rulesDirectory": []
}