-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
54 lines (54 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"extends": ["tslint:latest", "tslint-react", "rxjs-tslint-rules"],
"rules": {
"trailing-comma": true,
"semicolon": [true, "ignore-bound-class-methods"],
"object-literal-sort-keys": false,
"no-parameter-reassignment": true,
"only-arrow-functions": false,
"no-submodule-imports": false,
"no-console": [true, "log", "warn", "error"],
"no-dynamic-delete": true,
"no-floating-promises": [true, "Promise"],
"no-for-in-array": true,
"no-invalid-this": true,
"no-switch-case-fall-through": true,
"no-unbound-method": true,
"no-unnecessary-class": true,
"no-unused-expression": [true, "allow-tagged-template"],
"no-import-side-effect": [true, { "ignore-module": "(Normalize)" }],
"no-void-expression": true,
"restrict-plus-operands": true,
"use-default-type-parameter": true,
"indent": [true, "spaces", 4],
"max-line-length": [true, 120],
"no-require-imports": true,
"encoding": true,
"number-literal-format": true,
"interface-name": false,
"prefer-switch": true,
"prefer-template": true,
"type-literal-delimiter": true,
"space-before-function-paren": [
true,
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"no-implicit-dependencies": false,
"jsx-alignment": true,
"jsx-no-lambda": true,
"jsx-no-bind": true,
"jsx-no-multiline-js": true,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-wrap-multiline": true,
"rxjs-no-add": true,
"rxjs-deep-operators": true,
"rxjs-no-ignored-subscribe": true,
"rxjs-no-patched": true,
"rxjs-no-wholesale": true
}
}