-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
46 lines (46 loc) · 1.54 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
{
"defaultSeverity": "error",
"linterOptions": {
"exclude": ["SPRING_dev"]
},
"extends": [
"tslint-config-prettier",
"tslint-eslint-rules",
"tslint-jsdoc-rules",
"tslint-microsoft-contrib",
"tslint-react",
"tslint:latest",
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": false,
"completed-docs": false,
"function-name": false,
"jsdoc-format": true,
"jsx-curly-spacing": false,
"jsx-no-multiline-js": false,
"max-line-length": [true, 140],
"missing-jsdoc": false,
"no-console": false,
"no-implicit-dependencies": [true, "dev", ["~root", "~bioblocks-viz~", "__mocks__", "configs"]],
"no-increment-decrement": false,
"no-namespace": [true, "allow-declarations"],
"no-redundant-jsdoc": true,
"no-reference": false,
"no-relative-imports": [true, "severity", "error"],
"no-single-line-block-comment": false,
"no-submodule-imports": [true, "~root", "~bioblocks-viz~", "__mocks__", "configs", "plotly.js/dist/plotly"],
"no-suspicious-comment": false,
"number-literal-format": false,
"object-literal-key-quotes": [true, "as-needed"],
"prefer-array-literal": false,
"prefer-type-cast": false,
"quotemark": [true, "jsx-double", "single", "avoid-escape"],
"react-this-binding-issue": [true, { "allow-anonymous-listeners": true }],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"strict-boolean-expressions": false,
"trailing-comma": [true, { "esSpecCompliant": true }]
},
"rulesDirectory": []
}