-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 963 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
29
30
31
{
"extends": "tslint:recommended",
"rules": {
"forin": false,
"indent": [true, "spaces"],
"interface-name": false,
"ban-types": true,
"max-classes-per-file": true,
"max-line-length": false,
"member-access": true,
"member-ordering": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-debugger": false,
"no-empty": true,
"no-namespace": false,
"no-unused-expression": true,
"object-literal-sort-keys": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"only-arrow-functions": [false],
"ordered-imports": true,
"prefer-const": true,
"prefer-for-of": false,
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [
true,
{ "multiline": "never", "singleline": "never" }
],
"variable-name": false
}
}