forked from patrickmichalina/onvif-rx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
36 lines (36 loc) · 919 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
36
{
"extends": ["tslint-immutable"],
"rules": {
"newline-per-chained-call": false,
"prefer-object-spread": true,
"no-var-keyword": true,
"no-parameter-reassignment": true,
"typedef": false,
"indent": [true, "spaces", 2],
"space-within-parens": false,
"object-literal-key-quotes": false,
"semicolon": [true, "never"],
"align": false,
"curly": false,
"quotemark": [true, "single"],
"member-ordering": false,
"member-access": [false, "no-public"],
"newline-before-return": false,
"array-type": false,
"readonly-keyword": true,
"readonly-array": true,
"no-let": true,
"no-object-mutation": true,
"no-delete": true,
"no-method-signature": false,
"no-this": true,
"no-class": true,
"no-expression-statement": false,
"no-if-statement": true
},
"linterOptions": {
"exclude": [
"src/api/**/*.ts"
]
}
}