UNPKG

1.82 kBJSONView Raw
1{
2 "extends": "tslint:recommended",
3 "rules": {
4 "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
5 "import-ordering": false,
6 "array-type": false,
7 "no-console": false,
8 "quotemark": false,
9 "eofline": false,
10 "ordered-imports": false,
11 "object-literal-sort-keys": false,
12 "object-literal-shorthand": false,
13 "trailing-comma": [
14 true,
15 {
16 "multiline": "never",
17 "singleline": "never"
18 }
19 ],
20 "semicolon": [true, "always", "ignore-bound-class-methods"],
21 "promise-function-async": true,
22 "only-arrow-functions": false,
23 "no-shadowed-variable": false,
24 "member-access": false,
25 "radix": false,
26 "typedef": [
27 true,
28 "call-signature",
29 "parameter",
30 "property-declaration",
31 "member-variable-declaration"
32 ],
33 "whitespace": [
34 true,
35 "check-branch",
36 "check-decl",
37 "check-operator",
38 "check-separator",
39 "check-type",
40 "check-typecast"
41 ],
42 "typedef-whitespace": [
43 true,
44 {
45 "call-signature": "nospace",
46 "index-signature": "nospace",
47 "parameter": "nospace",
48 "property-declaration": "nospace",
49 "variable-declaration": "nospace"
50 },
51 {
52 "call-signature": "onespace",
53 "index-signature": "onespace",
54 "parameter": "onespace",
55 "property-declaration": "onespace",
56 "variable-declaration": "onespace"
57 }
58 ]
59 }
60}
\No newline at end of file