1 | {
|
2 | "rules": {
|
3 | "curly": true,
|
4 | "eofline": false,
|
5 | "align": [true, "parameters"],
|
6 | "class-name": true,
|
7 | "indent": [true, "spaces"],
|
8 | "max-line-length": [true, 100],
|
9 | "no-consecutive-blank-lines": true,
|
10 | "no-trailing-whitespace": true,
|
11 | "no-duplicate-key": true,
|
12 | "no-duplicate-variable": true,
|
13 | "no-unreachable": true,
|
14 | "no-var-keyword": true,
|
15 | "no-empty": true,
|
16 | "no-unused-expression": true,
|
17 | "no-unused-variable": true,
|
18 | "no-use-before-declare": true,
|
19 | "no-var-requires": true,
|
20 | "no-require-imports": true,
|
21 | "one-line": [true,
|
22 | "check-else",
|
23 | "check-whitespace",
|
24 | "check-open-brace"],
|
25 | "quotemark": [true,
|
26 | "single",
|
27 | "avoid-escape"],
|
28 | "semicolon": true,
|
29 | "typedef-whitespace": [true, {
|
30 | "call-signature": "nospace",
|
31 | "index-signature": "nospace",
|
32 | "parameter": "nospace",
|
33 | "property-declaration": "nospace",
|
34 | "variable-declaration": "nospace"
|
35 | }],
|
36 | "whitespace": [true,
|
37 | "check-branch",
|
38 | "check-decl",
|
39 | "check-operator",
|
40 | "check-separator",
|
41 | "check-type"]
|
42 | }
|
43 | }
|