forked from nestjs/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tslint.json
75 lines (75 loc) · 2.07 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
75
{
"extends": [
"tslint:recommended",
"tslint-etc",
"tslint-microsoft-contrib",
"tslint-clean-code",
"tslint-consistent-codestyle"
],
"rulesDirectory": [
"node_modules/tslint/lib/rules",
"node_modules/tslint-microsoft-contrib",
"node_modules/tslint-clean-code/dist/src",
"node_modules/tslint-consistent-codestyle"
],
"rules": {
"no-implicit-dependencies": [true, ["@generated/type-graphql", "~app_modules"]],
"no-submodule-imports": false,
"no-unnecessary-class": false,
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"no-unused-declaration": {
"options": [
{
"declarations": true,
"ignored": {},
"imports": true
}
],
"severity": "warn"
},
"triple-equals": [true, "allow-undefined-check"],
"no-use-before-declare": false,
"no-function-expression": false,
"member-access": false,
"ordered-imports": false,
"quotemark": false,
"no-var-keyword": false,
"object-literal-sort-keys": false,
"no-console": false,
"arrow-parens": false,
"max-line-length": false,
"object-literal-key-quotes": false,
"no-shadowed-variable": false,
"only-arrow-functions": false,
"no-var-requires": false,
"semicolon": false,
"interface-over-type-literal": false,
"align": false,
"trailing-comma": false,
"typedef": false,
"newline-before-return": false,
"interface-name": false,
"ban-types": false,
"no-relative-imports": false,
"missing-jsdoc": false,
"export-name": false,
"no-require-imports": false,
"no-http-string": false,
"no-parameter-reassignment": false,
"strict-boolean-expressions": false,
"no-unsafe-any": false,
"no-backbone-get-set-outside-model": false,
"no-function-constructor-with-string-args": false,
"no-reserved-keywords": false,
"no-increment-decrement": false,
"no-unnecessary-bind": false,
"linebreak-style": false,
"no-parameter-properties": false,
"newline-per-chained-call": false
}
}