forked from salesforce/observable-membrane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
33 lines (32 loc) · 959 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
{
"extends": [
"tslint:recommended"
],
"rules": {
"arrow-parens": false,
"ban-types": false,
"forin": false,
"interface-name": [false],
"jsdoc-format": false,
"max-classes-per-file": [true],
"max-line-length": [false],
"member-access": false,
"member-ordering": [false],
"no-bitwise": false,
"no-conditional-assignment": false,
"no-debugger": true,
"no-empty": true,
"no-namespace": true,
"no-unused-expression": true,
"object-literal-sort-keys": false,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"only-arrow-functions": [false],
"ordered-imports": [false],
"prefer-const": true,
"prefer-for-of": false,
"quotemark": [false],
"no-unnecessary-initializer": false,
"trailing-comma": [true],
"variable-name": false
}
}