UNPKG

1.34 kBJSONView Raw
1{
2 "rules": {
3 "align": [ true, "parameters", "statements" ],
4 "class-name": true,
5 "comment-format": [ false ],
6 "curly": true,
7 "eofline": true,
8 "forin": true,
9 "indent": [ true, "spaces" ],
10 "interface-name": [ true, "never-prefix" ],
11 "jsdoc-format": true,
12 "max-line-length": [ true, 130 ],
13 "no-construct": true,
14 "no-debugger": true,
15 "no-duplicate-variable": true,
16 "semicolon": [ true ],
17 "no-eval": true,
18 "no-internal-module": true,
19 "no-default-export": true,
20 "no-trailing-whitespace": true,
21 "no-var-keyword": false,
22 "one-line": [ true, "check-catch", "check-else", "check-finally", "check-open-brace", "check-whitespace" ],
23 "quotemark": [ true, "double", "avoid-escape" ],
24 "typedef-whitespace": [
25 true,
26 {
27 "call-signature": "nospace",
28 "index-signature": "nospace",
29 "parameter": "nospace",
30 "property-declaration": "nospace",
31 "variable-declaration": "nospace"
32 }
33 ],
34 "triple-equals": [ true, "allow-null-check" ],
35 "variable-name": [ true, "ban-keywords", "check-format", "allow-pascal-case" ],
36 "whitespace": [
37 true,
38 "check-branch",
39 "check-decl",
40 "check-operator",
41 "check-separator",
42 "check-type"
43 ]
44 }
45}
\No newline at end of file