-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
59 lines (59 loc) · 1.86 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
55
56
57
58
59
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"array-type": [true, "array"],
"ban": [true, ["it", "only"], ["describe", "only"], ["fit"], ["fdescribe"]],
"class-name": false,
"curly": false,
"eofline": true,
"forin": true,
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"label-position": true,
"max-classes-per-file": false,
"max-line-length": [false],
"member-access": false,
"member-ordering": false,
"no-namespace": false,
"no-arg": true,
"no-bitwise": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-imports": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-empty-interface": false,
"no-eval": true,
"no-floating-promises": true,
"no-inferrable-types": true,
"no-invalid-template-strings": true,
"no-parameter-reassignment": true,
"no-return-await": true,
"no-string-literal": true,
"no-trailing-whitespace": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-var-requires": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"only-arrow-functions": [false],
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}
],
"prefer-method-signature": true,
"promise-function-async": true,
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"radix": false,
"semicolon": [false],
"trailing-comma": [false],
"triple-equals": [true],
"variable-name": false,
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"]
}
}