forked from mohitbagra/azure-devops-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.63 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
{
"defaultSeverity": "warning",
"linterOptions": {
"exclude": ["node_modules/**"]
},
"rules": {
"member-access": [true, "check-accessor", "check-parameter-property"],
"member-ordering": [
true,
{
"order": [
"private-static-field",
"protected-static-field",
"public-static-field",
"private-static-method",
"protected-static-method",
"public-static-method",
"private-instance-field",
"protected-instance-field",
"public-instance-field",
"private-constructor",
"protected-constructor",
"public-constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
],
"alphabetize": false
}
],
"no-inferrable-types": [true, "ignore-params", "ignore-properties"],
"no-internal-module": true,
"no-unnecessary-type-assertion": true,
"curly": true,
"no-return-await": true,
"no-string-throw": true,
"no-var-keyword": true,
"prefer-object-spread": true,
"prefer-const": true,
"comment-format": [true, "check-space"],
"no-angle-bracket-type-assertion": true,
"no-boolean-literal-compare": true,
"ordered-imports": true
},
"jsRules": {},
"rulesDirectory": []
}