This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
59 lines (59 loc) · 1.76 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
{
"defaultSeverity": "error",
"extends": [
"tslint:all",
"tslint-config-standard",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"interface-name": [true, "never-prefix"],
"no-submodule-imports": [true, "atom-languageclient"],
"file-name-casing": [true, "kebab-case"],
"no-implicit-dependencies": false,
"strict-boolean-expressions": [
true,
"allow-null-union",
"allow-undefined-union",
"allow-string",
"allow-enum",
"allow-number"
],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"member-variable-declaration",
"property-declaration",
"object-destructuring",
"array-destructuring"
],
"no-parameter-properties": false,
"newline-before-return": false,
"no-unused-variable": false,
"prefer-function-over-method": [
true,
"allow-public",
"allow-protected"
],
"completed-docs": [
true,
{
"enums": { "visibilities": ["exported"] },
"variables": { "visibilities": ["exported"] },
"functions": { "visibilities": ["exported"] },
"interfaces": { "visibilities": ["exported"] },
"methods": {
"privacies": ["public", "protected"]
},
"properties": {
"locations": "instance",
"privacies": ["public", "protected"]
}
}
]
},
"rulesDirectory": []
}