-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
40 lines (40 loc) · 1.08 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
{
"rulesDirectory": [],
"extends": "tslint:all",
"rules": {
"indent": [true, "spaces", 2],
"interface-name": false,
"typedef": false,
"no-console": false,
"completed-docs": false,
"quotemark": [true, "single"],
"object-literal-sort-keys": [
false,
"match-declaration-order-only",
"shorthand-first"
],
"member-access": [true, "no-public"],
"member-ordering": false,
"no-parameter-properties": false,
"file-name-casing": [true, "kebab-case"],
"no-submodule-imports": [true, "rxjs", "native", "core-js"],
"newline-per-chained-call": false,
"no-implicit-dependencies": false,
"no-use-before-declare": false,
"variable-name" : {
"options": [
"check-format",
"allow-leading-underscore",
"ban-keywords",
"require-const-for-all-caps"
]
},
"prefer-method-signature": false,
"prefer-function-over-method": [ true, "allow-public" ],
"no-async-without-await": false,
"invalid-void": false
},
"linterOptions": {
"exclude": ["**/__generated__/**"]
}
}