-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
35 lines (35 loc) · 908 Bytes
/
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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"no-console": false,
"object-literal-sort-keys": false,
"no-string-literal": false,
"ban-types": false,
"typedef": [true, "call-signature"],
"no-parameter-reassignment": true,
"no-this-assignment": true,
"no-default-export": true,
"interface-name": [true, "never-prefix"],
"variable-name": [true, "allow-leading-underscore"],
"no-inferrable-types": [true, "ignore-params"],
"callable-types": true,
"class-name": true,
"member-access": [true, "no-public"],
"member-ordering": [
true,
{
"order": [
"static-field",
"static-method",
"instance-field",
"constructor",
"instance-method"
]
}
],
"array-type": [true, "array"]
},
"linterOptions": {
"exclude": ["dist/**/*"]
}
}