forked from udos86/ng-dynamic-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
35 lines (35 loc) · 862 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
34
35
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules": {
"component-selector": [
true,
"element",
"dynamic",
"kebab-case"
],
"quotemark": [
true,
"double"
],
"semicolon": true,
"trailing-comma": true,
"triple-equals": true,
"variable-name": false,
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": false,
"no-output-rename": false,
"no-forward-ref": false,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true,
"import-destructuring-spacing": true,
"no-access-missing-member": false,
"no-output-on-prefix": true
}
}