forked from bullhorn/novo-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
83 lines (83 loc) · 2.73 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
76
77
78
79
80
81
82
83
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rulesDirectory": ["codelyzer"],
"rules": {
"array-type": false,
"arrow-parens": false,
"ban-types": false,
"deprecation": {
"severity": "warn"
},
"import-blacklist": [true, "rxjs/Rx"],
"max-line-length": [false, 120],
"member-access": false,
"member-ordering": [
false,
{
"order": [
"public-static-field",
"protected-static-field",
"private-static-field",
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"public-static-method",
"protected-static-method",
"private-static-method",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"interface-name": false,
"max-classes-per-file": false,
"no-consecutive-blank-lines": false,
"no-console": [true, "debug", "time", "timeEnd", "trace"],
"no-duplicate-variable": [true, "check-parameters"],
"no-empty": false,
"no-inferrable-types": [false, "ignore-params"],
"no-non-null-assertion": true,
"no-redundant-jsdoc": false,
"no-switch-case-fall-through": true,
"no-unnecessary-initializer": true,
"no-unused-expression": false,
"no-bitwise": false,
"object-literal-sort-keys": false,
"prefer-const": false,
"quotemark": [true, "single", "avoid-escape"],
"typedef": [false, "parameter", "property-declaration"],
"variable-name": false,
"no-var-requires": false,
"object-literal-key-quotes": false,
"ordered-imports": false,
"trailing-comma": false,
"no-conflicting-lifecycle": true,
"no-output-native": false,
"directive-selector": [false, "attribute", "app", "camelCase"],
"component-selector": [true, "element", "page", "app", "kebab-case"],
"directive-class-suffix ": false,
"template-banana-in-box": true,
"template-no-negated-async": false,
"no-output-on-prefix": false,
"no-inputs-metadata-property": false,
"no-outputs-metadata-property": true,
"no-host-metadata-property": false,
"no-input-rename": false,
"no-output-rename": false,
"use-lifecycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": [false, "Element", "Component", "View", "Directive", "Example"],
"contextual-lifecycle": true,
"directive-class-suffix": false,
"prefer-for-of": false,
"only-arrow-functions": false,
"no-conditional-assignment": false,
"one-variable-per-declaration": false,
"jsdoc-format": false,
"no-shadowed-variable": false,
"forin": false,
"no-empty-interface": false
}
}