-
Notifications
You must be signed in to change notification settings - Fork 108
/
tslint.json
37 lines (37 loc) · 1.18 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
36
37
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"ordered-imports": false,
"trailing-comma": false,
"array-type": [true, "array-simple"],
"prefer-const": true,
"new-parens": true,
"no-consecutive-blank-lines": true,
"no-trailing-whitespace": true,
"no-unnecessary-initializer": true,
"one-variable-per-declaration": true,
"space-before-function-paren": [true, "always"],
"interface-name": [true, "never-prefix"],
"forin": false,
"indent": [true, "spaces", 2],
"jsdoc-format": false,
"object-literal-sort-keys": false,
"member-ordering": false,
"prefer-for-of": false,
"max-line-length": false,
"only-arrow-functions": false,
"ban-types": false,
"no-console": false,
"no-empty": false,
"semicolon": [true, "never"],
"no-var-requires": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"unified-signatures": false
},
"rulesDirectory": []
}