-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
42 lines (42 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
36
37
38
39
40
41
42
{
"rulesDirectory": ["node_modules/vrsource-tslint-rules/rules", "node_modules/tslint-eslint-rules/dist/rules"],
"rules": {
"ter-prefer-arrow-callback": false,
"jsdoc-format": true,
"class-name": true,
"curly": false,
"eofline": true,
"use-isnan": false,
"indent": [true, "spaces"],
"max-line-length": [true, 120],
"no-arg": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"no-trailing-whitespace": true,
"no-unused-expression": false,
"no-unused-variable": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"triple-equals": [true, "allow-null-check"],
"variable-name": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
]
}
}