forked from tridactyl/tridactyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
40 lines (40 loc) · 1.15 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
{
"extends": ["tslint:recommended", "tslint-sonarts", "tslint-etc"],
"linterOptions": {
"exclude": [ "**/.*.generated.ts" ]
},
"rules": {
"align": false,
"arrow-parens": false,
"class-name": false,
"cognitive-complexity": false,
"curly": false,
"interface-name": false,
"jsdoc-format": false,
"max-classes-per-file": false,
"max-line-length": false,
"max-union-size": false,
"member-access": false,
"no-array-delete": false,
"no-big-function": false,
"no-commented-code": false,
"no-console": false,
"no-duplicate-string": false,
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-eval": false,
"no-extra-semicolon": false,
"no-shadowed-variable": false,
"no-string-throw": false,
"no-unsafe-finally": false,
"no-unused-declaration": true,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-const": [true, {"destructuring": "all"}],
"semicolon": false,
"trailing-comma": false,
"triple-equals": false,
"variable-name": false
}
}