UNPKG

1.5 kBJSONView Raw
1{
2 "rules": {
3 "no-inferrable-types": [false],
4 "no-unused-expression": true,
5 "no-duplicate-variable": true,
6 "no-shadowed-variable": true,
7 "comment-format": [
8 true, "check-space"
9 ],
10 "indent": [
11 true, "spaces"
12 ],
13 "curly": false,
14 "class-name": true,
15 "semicolon": [true],
16 "triple-equals": true,
17 "eofline": true,
18 "no-bitwise": false,
19 "no-console": [false],
20 "member-access": [true, "check-accessor", "check-constructor"],
21 "no-consecutive-blank-lines": [true],
22 "no-parameter-properties": true,
23 "one-line": [
24 false
25 ],
26 "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
27 "interface-name": [true, "always-prefix"],
28 "no-conditional-assignment": true,
29 "use-isnan": true,
30 "no-trailing-whitespace": true,
31 "quotemark": [true, "single", "avoid-escape"],
32 "no-use-before-declare": false,
33 "whitespace": [true,
34 "check-branch",
35 "check-decl",
36 "check-operator",
37 "check-module",
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