-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 780 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 780 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": false,
"array-type": [true, "generic"],
"ban-types": false,
"interface-over-type-literal": false,
"max-line-length": [false],
"no-angle-bracket-type-assertion": false,
"no-shadowed-variable": false,
"prefer-const": false,
"quotemark": [true, "single"],
"space-before-function-paren": [true, "always"],
"trailing-comma": "never",
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"],
"variable-name": [false, "allow-leading-underscore"],
"object-literal-sort-keys": false,
"typedef-whitespace": [true, "call-signature"]
},
"rulesDirectory": []
}