]> git.saurik.com Git - logizomai.git/blob - tslint.json
Initial (seemingly working!) version of Logizomai.
[logizomai.git] / tslint.json
1 {
2 "defaultSeverity": "error",
3
4 "extends": [
5 "tslint:recommended"
6 ],
7
8 "jsRules": {},
9
10 "rules": {
11 "align": false,
12 "arrow-return-shorthand": false,
13 "curly": false,
14 "interface-name": false,
15 "max-classes-per-file": false,
16 "max-line-length": false,
17 "member-ordering": false,
18 "newline-before-return": false,
19 "no-bitwise": false,
20 "no-consecutive-blank-lines": false,
21 "no-empty": false,
22 "no-null-keyword": false,
23 "no-shadowed-variable": false,
24 "object-literal-shorthand": false,
25 "object-literal-sort-keys": false,
26 "quotemark": false,
27 "unified-signatures": false,
28 "variable-name": false,
29
30 "trailing-comma": [true, {"multiline": "always", "singleline": "ignore"}],
31
32 "no-unsafe-any": false,
33 "restrict-plus-operands": false,
34
35 "no-console": false,
36
37 "no-floating-promises": true,
38 "no-unused-expression": true
39 },
40
41 "rulesDirectory": []
42 }