-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
57 lines (57 loc) · 1.44 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
54
55
56
57
{
"rules": {
"linebreak-style": [
true,
"LF"
],
"no-any": false,
"no-reference": false,
"max-func-body-length": false,
"no-shadowed-variable": false,
"no-stateless-class": false,
"possible-timing-attack": false,
"no-increment-decrement": false,
"no-suspicious-comment": false,
"no-empty-interface": false,
"max-classes-per-file": false,
"ordered-imports": false,
"no-string-literal": false,
"no-http-string": false,
"strict-boolean-expressions": false,
"no-constant-condition": false,
"interface-name": false,
"completed-docs": false,
"whitespace": false,
"one-line": false,
"newline-before-return": false,
"newline-per-chained-call": false,
"no-require-imports": false,
"no-console": false,
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"export-name": false,
"promise-function-async": false,
"no-void-expression": false,
"align": false,
"no-floating-promises": false,
"no-backbone-get-set-outside-model": false,
"no-parameter-properties": false,
"trailing-comma": false,
"typedef": [
true,
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
],
"prefer-type-cast": false,
"import-name": false,
"no-unsafe-any": false
},
"linterOptions": {
"exclude": [
"**/*.test.*"
]
}
}