forked from Taisiias/formmailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
53 lines (51 loc) · 1.79 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
{
"extends": "tslint:latest",
"rules": {
"max-file-line-count": [true, 200],
"cyclomatic-complexity": [true, 10],
"no-any": true,
"no-empty-interface": true,
"no-inferrable-types": [ true ],
"typedef": [true, "call-signature", "parameter", "property-declaration",
"member-variable-declaration"],
"no-invalid-this": true,
"no-null-keyword": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"max-line-length": [ true, 100 ],
"triple-equals": [true, "allow-null-check", "allow-undefined-check"],
"no-default-export": true,
"no-mergeable-namespace": true,
"no-angle-bracket-type-assertion": true,
"linebreak-style": [true, "LF"],
"variable-name": [
true,
"ban-keywords",
"allow-leading-underscore",
"check-format",
"allow-pascal-case"
],
"prefer-const": true,
"interface-name": [ false ],
"max-classes-per-file": [ false ],
"no-namespace": false,
"no-trailing-whitespace": true,
"await-promise": true,
"promise-function-async": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-inferred-empty-object-type": true,
"no-unsafe-any": true,
"no-use-before-declare": true,
"no-void-expression": true,
"restrict-plus-operands": true,
"strict-type-predicates": true,
"use-default-type-parameter": true,
"deprecation": true,
"match-default-export-name": true,
"no-boolean-literal-compare": true,
"no-unnecessary-qualifier": true,
"return-undefined": true,
"no-implicit-dependencies": [true, "dev"]
}
}