-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
38 lines (38 loc) · 1.09 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
{
"defaultSeverity": "error",
"extends": [
"tslint:latest",
"tslint-immutable",
"tslint-no-unused-expression-chai"
],
"jsRules": {},
"rules": {
"arrow-parens": false,
"comment-format": false,
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"no-class": false,
"no-console": false,
"no-delete": true,
"no-empty": false,
"no-empty-interfaces": false,
"no-expression-statement": false,
"no-if-statement": false,
"no-implicit-dependencies": false,
"no-let": false,
"no-loop-statement": false,
"no-method-signature": true,
"no-mixed-interface": false,
"no-object-mutation": false,
"no-parameter-reassignment": true,
"no-unnecessary-class": ["allow-static-only"],
"no-var-keyword": true,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"prefer-const": true,
"readonly-array": true,
"readonly-keyword": true,
"typedef": [true, "call-signature"]
},
"rulesDirectory": []
}