forked from sanderlab/alignmentviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
43 lines (43 loc) · 1.21 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
{
"defaultSeverity": "error",
"linterOptions": {
"exclude": ["speclist*"]
},
"extends": [
"tslint-config-prettier",
"tslint-eslint-rules",
"tslint-jsdoc-rules",
"tslint-microsoft-contrib",
"tslint:latest",
"tslint:recommended"
],
"jsRules": true,
"rules": {
"arrow-parens": false,
"completed-docs": false,
"jsdoc-format": true,
"max-line-length": [true, 130],
"missing-jsdoc": false,
"no-console": false,
"no-implicit-dependencies": true,
"no-increment-decrement": false,
"no-reference": false,
"no-single-line-block-comment": false,
"no-submodule-imports": true,
"no-suspicious-comment": false,
"no-this-assignment": true,
"no-var-keyword": true,
"number-literal-format": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"prefer-array-literal": false,
"prefer-const": true,
"prefer-type-cast": false,
"quotemark": [true, "single", "avoid-escape"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"strict-boolean-expressions": false,
"trailing-comma": [true, { "esSpecCompliant": true }],
"variable-name": false
},
"rulesDirectory": []
}