UNPKG

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