-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
49 lines (49 loc) · 1.01 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
{
"extends": [
],
"jsRules": false,
"linterOptions": {
"exclude": [
"**/node_modules/**/*",
"**/_test_/**/*",
"**/*.js"
]
},
"rules": {
"await-promise": true,
"arrow-return-shorthand": true,
"class-name": true,
"curly": [
true,
"ignore-same-line"
],
"cyclomatic-complexity": true,
"member-access": [
true,
"no-public"
],
"member-ordering": [
true,
{
"order": "statics-first"
}
],
"no-console": true,
"no-duplicate-imports": true,
"no-magic-numbers": false,
"no-implicit-dependencies": false,
"no-parameter-reassignment": true,
"no-return-await": true,
"no-string-literal": true,
"no-unnecessary-initializer": true,
"no-unused-variable": false,
"ordered-imports": true,
"prefer-const": true,
"prefer-template": true,
"promise-function-async": true,
"switch-default": true,
"triple-equals": true,
"use-isnan": true
},
"rulesDirectory": []
}