forked from IgniteUI/igniteui-angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 720 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "tslint:latest",
"rules": {
"deprecation": {
"severity": "warning"
},
"indent": [true, "spaces"],
"variable-name": [true, "allow-leading-underscore"],
"interface-name": [true, "always-prefix"],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"no-empty": false,
"no-bitwise": false,
"no-object-literal-type-assertion": false,
"no-string-literal": false,
"no-submodule-imports": [false],
"max-classes-per-file": false,
"prefer-object-spread": false,
"no-console": false,
"prefer-conditional-expression": false,
"prefer-for-of": false,
"arrow-parens": false,
"object-literal-sort-keys": false
}
}