forked from cyclosproject/ng-openapi-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
46 lines (46 loc) · 1.13 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rulesDirectory": [],
"rules": {
"array-type": false,
"arrow-return-shorthand": true,
"curly": true,
"deprecation": true,
"prefer-const": true,
"max-classes-per-file": false,
"max-line-length": [false, 140],
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"static-method",
"instance-method"
]
}
],
"no-console": false,
"no-empty": false,
"no-inferrable-types": [true, "ignore-params"],
"no-non-null-assertion": false,
"no-switch-case-fall-through": true,
"no-var-requires": false,
"variable-name": {
"options": ["ban-keywords", "allow-pascal-case"]
},
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive"
}
],
"triple-equals": [true, "allow-null-check"],
"unified-signatures": false,
"use-isnan": true,
"prefer-for-of": false,
"no-duplicate-imports": true,
"ban-types": false
}
}