-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 753 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 753 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
25
{
"extends": ["tslint:recommended"],
"rules": {
"no-angle-bracket-type-assertion": false,
"object-literal-sort-keys": false,
"interface-name": false,
"variable-name": true,
"max-classes-per-file": false,
"object-literal-key-quotes": false,
"prefer-object-spread": true,
"object-literal-shorthand": false,
"no-unsafe-any": true,
"max-line-length": false,
"no-bitwise": false,
"indent": [true, "spaces", 4],
"linebreak-style": true,
"ordered-imports": true,
"eofline": true,
"semicolon": true,
"no-console": false,
"no-namespace": false,
"quotemark": false,
"arrow-parens":false
}
}