-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
executable file
·57 lines (57 loc) · 1.17 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"object-literal-sort-keys": false
},
"rules": {
"arrow-parens": false,
"arrow-return-shorthand": [
true,
"multiline"
],
"await-promise": true,
"curly": [
true,
"ignore-same-line"
],
"interface-name": false,
"linebreak-style": [
true,
"LF"
],
"max-line-length": false,
"no-consecutive-blank-lines": [
true,
1
],
"no-floating-promises": true,
"no-promise-as-boolean": true,
"no-require-imports": false,
"no-return-await": true,
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"ordered-imports": true,
"prefer-const": true,
"quotemark": [
true,
"single"
],
"semicolon": true,
"space-before-function-paren": false,
"trailing-comma": false,
"no-var-keyword": true,
"no-var-requires": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-trailing-underscore",
"allow-pascal-case"
]
},
"rulesDirectory": []
}