-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
72 lines (72 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"import-spacing": true,
"ordered-imports": {
"options": [
{
"import-sources-order": "case-insensitive"
}
]
},
"object-literal-sort-keys": false,
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
"interface-name": false,
"curly": false,
"ban-comma-operator": true,
"class-name": true,
"array-type": { "options": "array" },
"arrow-return-shorthand": true,
"eofline": true,
"indent": { "options": "spaces", "severity": "error" },
"match-default-export-name": true,
"max-line-length": { "options": 90 },
"adjacent-overload-signatures": true,
"newline-before-return": true,
"no-submodule-imports": false,
"member-access": false,
"no-var-requires": false,
"space-before-function-paren": false,
"prefer-object-spread": true,
"no-unused-expression": true,
"prefer-const": true,
"typeof-compare": true,
"no-unnecessary-type-assertion": true,
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-trailing-whitespace": true,
"use-isnan": true,
"triple-equals": true,
"unified-signatures": true,
"type-literal-delimiter": true,
"promise-function-async": true,
"number-literal-format": true,
"no-return-await": true,
"no-redundant-jsdoc": true,
"no-irregular-whitespace": true,
"quotemark": { "options": "single" },
"prefer-for-of": true,
"prefer-method-signature": true,
"strict-type-predicates": true,
"deprecation": true,
"await-promise": true,
"arrow-parens": false,
"no-shadowed-variable": [
true,
{
"class": true,
"enum": true,
"function": true,
"interface": false,
"namespace": true,
"typeAlias": false,
"typeParameter": false
}
],
"comment-format": [true, "check-space"],
"semicolon": true
},
"rulesDirectory": []
}