-
Notifications
You must be signed in to change notification settings - Fork 40
/
tslint.json
39 lines (38 loc) · 1014 Bytes
/
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
{
"extends": ["tslint-config-valorsoft", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "never"],
"member-access": [true],
"member-ordering": [
true,
{
"order": ["public-before-private", "static-before-instance", "variables-before-functions"],
"alphabetize": true
}
],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"variable-declaration",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
],
"no-inferrable-types": false,
"ordered-imports": {
"options": {
"grouped-imports": true,
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive",
"module-source-path": "full"
}
},
// "no-implicit-dependencies": [true, "dev"],
"strict-comparisons": true,
"type-literal-delimiter": false
}
}