]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/tslint.json
LP1806087 Org setting to enable experimental staff catalog
[Evergreen.git] / Open-ILS / src / eg2 / tslint.json
1 {
2   "rulesDirectory": [
3     "node_modules/codelyzer"
4   ],
5   "rules": {
6     "arrow-return-shorthand": true,
7     "callable-types": true,
8     "class-name": true,
9     "comment-format": [
10       true,
11       "check-space"
12     ],
13     "curly": true,
14     "eofline": true,
15     "forin": true,
16     "import-blacklist": [
17       true,
18       "rxjs/Rx"
19     ],
20     "import-spacing": true,
21     "indent": [
22       true,
23       "spaces"
24     ],
25     "interface-over-type-literal": true,
26     "label-position": true,
27     "max-line-length": [
28       true,
29       140
30     ],
31     "member-access": false,
32     "member-ordering": [
33       true,
34       {
35         "order": [
36           "static-field",
37           "instance-field",
38           "static-method",
39           "instance-method"
40         ]
41       }
42     ],
43     "no-arg": true,
44     "no-bitwise": true,
45     "no-console": [
46       true,
47       "time",
48       "timeEnd",
49       "trace"
50     ],
51     "no-construct": true,
52     "no-debugger": true,
53     "no-duplicate-super": true,
54     "no-empty": false,
55     "no-empty-interface": true,
56     "no-eval": true,
57     "no-inferrable-types": [
58       true,
59       "ignore-params"
60     ],
61     "no-misused-new": true,
62     "no-non-null-assertion": true,
63     "no-shadowed-variable": true,
64     "no-string-literal": false,
65     "no-string-throw": true,
66     "no-switch-case-fall-through": true,
67     "no-trailing-whitespace": true,
68     "no-unnecessary-initializer": true,
69     "no-unused-expression": true,
70     "no-use-before-declare": true,
71     "no-var-keyword": true,
72     "object-literal-sort-keys": false,
73     "one-line": [
74       true,
75       "check-open-brace",
76       "check-catch",
77       "check-else",
78       "check-whitespace"
79     ],
80     "prefer-const": true,
81     "quotemark": [
82       true,
83       "single"
84     ],
85     "radix": true,
86     "semicolon": [
87       true,
88       "always"
89     ],
90     "triple-equals": [
91       true,
92       "allow-null-check"
93     ],
94     "typedef-whitespace": [
95       true,
96       {
97         "call-signature": "nospace",
98         "index-signature": "nospace",
99         "parameter": "nospace",
100         "property-declaration": "nospace",
101         "variable-declaration": "nospace"
102       }
103     ],
104     "unified-signatures": true,
105     "variable-name": false,
106     "whitespace": [
107       true,
108       "check-branch",
109       "check-decl",
110       "check-operator",
111       "check-separator",
112       "check-type"
113     ],
114     "directive-selector": [
115       true,
116       "attribute",
117       "eg",
118       "camelCase"
119     ],
120     "component-selector": [
121       true,
122       "element",
123       "eg",
124       "kebab-case"
125     ],
126     "use-input-property-decorator": true,
127     "use-output-property-decorator": true,
128     "use-host-property-decorator": true,
129     "no-input-rename": true,
130     "no-output-rename": true,
131     "use-life-cycle-interface": true,
132     "use-pipe-transform-interface": true,
133     "component-class-suffix": true,
134     "directive-class-suffix": true
135   }
136 }