forked from FoalTS/foal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
33 lines (33 loc) · 972 Bytes
/
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
{
"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"]
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"**/src/migrations/*.ts",
"**/src/generate/mocks/**/*.ts",
"**/src/generate/templates/model/*.ts",
"**/src/generate/templates/rest-api/*.ts",
"**/src/generate/specs/**/app.controller.*.ts"
]
}
}