-
Notifications
You must be signed in to change notification settings - Fork 132
/
tslint.json
53 lines (53 loc) · 1.73 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:recommended",
"rules": {
"max-line-length": {
"options": [360]
},
"quotemark": [true, "single"],
"new-parens": true,
"no-unsafe-any": false,
"static-this": true,
"switch-default": true,
"use-isnan": true,
"no-duplicate-imports": true,
"no-duplicate-switch-case": true,
"one-line": true,
"prefer-readonly": true,
"binary-expression-operand-order": true,
"class-name": true,
// "completed-docs": [true, "classes", "functions", "enums", "interfaces", "methods", "properties", "types"],
"file-name-casing": [true, "kebab-case"],
"no-arg": true,
"no-any": false,
"no-var-requires": true,
"no-unused-variable": true,
"curly": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-consecutive-blank-lines": true,
"only-arrow-functions": [true, "allow-named-functions"],
"no-empty": true,
"no-console": false,
"triple-equals": true,
"prefer-for-of": true,
"max-classes-per-file": true,
"no-shadowed-variable": true,
"prefer-const": true,
"object-literal-shorthand": true,
"no-var-keyword": true,
"one-variable-per-declaration": true,
"no-trailing-whitespace": true,
"unified-signatures": true,
"no-string-literal": true,
"ban-types": false,
"no-namespace": true,
"comment-format": false,
"no-unused-expression": true,
"no-string-throw": true,
"no-angle-bracket-type-assertion": true
},
"jsRules": true
}