forked from zebzhao/Angular-QueryBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
25 lines (25 loc) · 875 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
{
"extends": ["tslint:recommended"],
"rulesDirectory": ["node_modules/codelyzer"],
"rules": {
"component-class-suffix": true,
"directive-class-suffix": true,
"interface-name": false,
"max-line-length": [true, 160],
"no-access-missing-member": false,
"member-access": false,
"no-console": [true, "time", "timeEnd", "trace"],
"no-forward-ref": false,
"no-input-rename": true,
"no-output-rename": true,
"no-string-literal": false,
"no-empty": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape"],
"trailing-comma": [false, {"multiline": "always", "singleline": "never"}],
"use-pipe-transform-interface": true,
"variable-name": [true, "allow-leading-underscore", "ban-keywords", "check-format"]
}
}