-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
28 lines (28 loc) · 922 Bytes
/
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"ban-types": false,
"catch-clause-parameter": [true, "err"],
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": false,
"member-ordering": false,
"no-console": false,
"no-string-literal": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"prefer-for-of": false,
"max-classes-per-file": [true, 10, "exclude-class-expressions"],
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"trailing-comma": [
true,
{
"esSpecCompliant": true
}
]
},
"rulesDirectory": []
}