-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
tslint.json
35 lines (35 loc) · 1.09 KB
/
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
32
33
34
35
{
"extends": "tslint:recommended",
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": false,
"interface-name": [true, "never-prefix"],
"jsdoc-format": false,
"max-line-length": false,
"member-access": false,
"no-console": [false],
"no-consecutive-blank-lines": [true, 3],
"no-empty-interface": false,
"no-string-literal": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"trailing-comma": false,
"eofline": false,
"no-empty": false,
"align": false,
"no-trailing-whitespace": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"interface-over-type-literal": false,
"no-var-requires": false
},
"jsRules": {}
}