-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
37 lines (37 loc) · 1.08 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
{
"extends": ["tslint:recommended"],
"rules": {
"strict-type-predicates": true,
"ordered-imports": true,
"no-console": false,
"jsx-no-multiline-js": false,
"whitespace": true,
"no-empty-interface": true,
"label-position": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"semicolon": true,
"trailing-comma": false,
"arrow-parens": false,
"max-line-length": [true, 200],
"interface-name": true,
"object-literal-sort-keys": false,
"eofline": true,
"no-trailing-whitespace": true,
"no-shadowed-variable": true,
"indent": true,
"await-promise": true,
"class-name": true,
"no-duplicate-imports": true,
"no-null-keyword": true,
"prefer-for-of": true,
"no-unused-variable": true,
"no-unused-expression": true
},
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**",
"coverage/lcov-report/*.js"
]
}
}