This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
tslint.json
61 lines (61 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"extends": [
"tslint:recommended"
],
"rules": {
"class-name": true,
"curly": true,
"import-spacing": true,
"indent": [
true, "spaces", 4
],
"max-line-length": [
true, {
"limit": 120,
"ignore-pattern": "^import |^export {(.*?)}"
}
],
"no-unused-expression": true,
"no-var-keyword": true,
"semicolon": [
true, "always"
],
"trailing-comma": [
true, {
"multiline": "never",
"singleline": "never"
}
],
"triple-equals": true,
"space-within-parens": true,
"no-irregular-whitespace": true,
"no-boolean-literal-compare": true,
"newline-before-return": true,
"linebreak-style": [
true, "LF"
],
"interface-name": [
true, "never-prefix"
],
"no-conditional-assignment": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-preblock",
"check-rest-spread",
"check-separator",
"check-type-operator",
"check-type",
"check-typecast"
]
},
"linterOptions": {
"exclude": [
"./documentation/*",
"./node_modules/*"
]
}
}