-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
41 lines (41 loc) · 1.14 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
38
39
40
41
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"max-line-length": {
"options": [250]
},
"no-console": {
"severity": "warning",
"options": [
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
]
},
"jsx-boolean-value": ["never"],
"linebreak-style": [true, "LF"],
"no-any": false,
"quotemark": [true, "single", "jsx-double"],
"indent": [true, "spaces", 2],
"semicolon": false,
"trailing-comma": [true, { "singleline": "never" }],
"import-name": false,
"interface-name": false,
"member-ordering": [true, { "order": "statics-first" }],
"no-empty": [false],
"arrow-parens": false,
"interface-over-type-literal": false,
"member-access": false,
"ordered-imports": false,
"origin-ordered-imports": [ true, "no-blank-lines" ],
"import-blacklist": [true, "lodash"],
"class-name": true,
"object-literal-sort-keys": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
}
}