-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
33 lines (33 loc) · 1022 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:latest", "tslint-react"],
"globals": {
"__DEV_": true,
"fetch": false,
"window": true
},
"rules": {
"ordered-imports": [true],
"member-access": [false],
"member-ordering": [false],
"trailing-comma": false,
"no-empty": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-constant-condition": false,
"triple-equals": [true, "allow-undefined-check"],
"arrow-parens": [false],
"semicolon": [true, "never", "ignore-bound-class-methods"],
"object-literal-sort-keys": false,
"no-duplicate-imports": true,
"jsx-alignment": true,
"jsx-no-bind": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"max-classes-per-file": [true, 1],
"interface-name": false,
"quotemark": [true, "single", "jsx-double"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"no-console": [false]
}
}