-
Notifications
You must be signed in to change notification settings - Fork 31
/
tslint.json
44 lines (44 loc) · 1.05 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
{
"defaultSeverity": "error",
"extends": [
"tslint-microsoft-contrib"
],
"jsRules": {},
"rules": {
"missing-jsdoc": false,
"no-relative-imports": false,
"function-name": false,
"variable-name": false,
"export-name": false,
"interface-name": false,
"no-any": false,
"no-suspicious-comment": false,
"no-unsafe-any": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-multiline-string": false,
"no-inner-html": false,
"match-default-export-name": false,
"mocha-no-side-effect-code": false,
"completed-docs": false,
"align": [
true,
"parameters",
"statements"
],
"strict-boolean-expressions": false,
"trailing-comma": [
true, {
"multiline": "always",
"singleline": "never"
}
],
"no-void-expression": [
true,
"ignore-arrow-function-shorthand"
],
"no-http-string": [true, "http://www.w3.org/?.*", "http://localhost:?.*/?.*"],
"quotemark": [true, "single"]
},
"rulesDirectory": []
}