-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
tslint.json
39 lines (39 loc) · 1.29 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"no-console": false,
"interface-name": false,
"max-classes-per-file": false,
"array-type": [true, "array"],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-empty": false,
"no-shadowed-variable": false,
"trailing-comma": false,
"no-empty-interface": false,
"no-unused-variable": true,
"no-duplicate-imports": true,
"no-conditional-assignment": false,
"member-access": [true, "no-public"],
"forin": false
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"**/src/migrations/*.ts",
"**/src/generate/fixtures/**/*.ts",
"**/src/generate/templates/model/*.ts",
"**/src/generate/templates/rest-api/**/*.ts",
"**/src/generate/specs/**/app.controller.ts",
"**/src/generate/specs/**/api.controller.ts",
"**/src/generate/specs/entity/test-foo-bar.entity.ts",
"**/src/generate/specs/entity/test-foo-bar.entity.mongodb.ts",
"**/src/generate/templates/entity/entity.ts",
"**/src/generate/templates/entity/entity.mongodb.ts"
]
}
}