forked from bbc/sqs-consumer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
74 lines (74 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"extends": [
"tslint-microsoft-contrib"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"no-magic-numbers": false,
"variable-name": [
true,
"ban-keywords"
],
"align": false,
"max-line-length": false,
"no-parameter-reassignment": true,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"no-console": true,
"typedef": [
true,
"call-signature",
"parameter",
"member-variable-declaration"
],
"function-name": false,
"no-submodule-imports": false,
"prefer-type-cast": false,
"match-default-export-name": false,
"export-name": false,
"no-default-export": false,
"no-require-imports": false,
"ordered-imports": true,
"no-relative-imports": false,
"await-promise": false,
"completed-docs": false,
"prefer-object-spread": false,
"no-http-string": false,
"no-reserved-keywords": false,
"no-any": false,
"no-unsafe-any": false,
"max-classes-per-file": false,
"non-literal-require": false,
"underscore-consistent-invocation": false,
"mocha-no-side-effect-code": false,
"no-var-requires": false,
"member-access": false,
"missing-jsdoc": false,
"interface-name": false,
"no-backbone-get-set-outside-model": false,
"no-multiline-string": false,
"no-conditional-assignment": true,
"no-empty": false,
"newline-before-return": false,
"array-bracket-spacing": false,
"no-increment-decrement": false,
"strict-boolean-expressions": false,
"newline-per-chained-call": false,
"mocha-avoid-only": true
},
"linterOptions": {
"exclude": [
"node_modules",
"coverage",
"dist",
"**/*.json"
]
}
}