-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtslint.json
More file actions
69 lines (69 loc) · 2.24 KB
/
Copy pathtslint.json
File metadata and controls
69 lines (69 loc) · 2.24 KB
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
60
61
62
63
64
65
66
67
68
69
{
"rules": {
"unnecessary-else": true,
"no-tautology-expression": true,
"static-this": true,
"jsdoc-format": true,
"array-type": false,
"await-promise": true,
"class-name": true,
"callable-types": true,
"deprecation": true,
"file-name-casing": [true, "camel-case"],
"no-unsafe-any": true,
"no-unnecessary-callback-wrapper": true,
"no-unnecessary-initializer": true,
"no-unnecessary-class": true,
"no-unnecessary-type-assertion": true,
"no-misused-new": true,
"variable-name": true,
"unified-signatures": true,
"triple-equals": true,
"strict-type-predicates": true,
"strict-boolean-expressions": [true, "allow-undefined-union", "ignore-rhs"],
"return-undefined": true,
"quotemark": false,
"promise-function-async": true,
"prefer-template": true,
"prefer-const": true,
"prefer-readonly": true,
"prefer-object-spread": true,
"prefer-for-of": true,
"prefer-conditional-expression": true,
"prefer-method-signature": true,
"prefer-switch": true,
"object-literal-shorthand": true,
"object-literal-key-quotes": false,
"number-literal-format": true,
"no-var-keyword": true,
"no-this-assignment": true,
"no-trailing-whitespace": true,
"no-irregular-whitespace": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": true,
"no-return-await": true,
"no-shadowed-variable": true,
"no-unused-expression": true,
"no-floating-promises": true,
"no-invalid-this": true,
"semicolon": true,
"trailing-comma": true,
"completed-docs": [
true,
{
"enums": true,
"functions": { "visibilities": ["exported"] },
"methods": { "privacies": ["public"] },
"properties": {
"privacies": ["public"]
},
"classes": { "visibilities": ["exported"] },
"interfaces": { "visibilities": ["exported"], "tags": { "existence": ["hidden", "see"] } },
"types": { "visibilities": ["exported"], "tags": { "existence": ["hidden", "see"] } },
"variables": { "visibilities": ["exported"], "tags": { "existence": ["hidden", "see"] } },
"namespaces": { "visibilities": ["exported"] }
}
]
}
}