UNPKG

992 BJSONView Raw
1{
2 "defaultSeverity": "error",
3 "plugins": ["prettier"],
4 "extends": [],
5 "jsRules": {},
6 "rules": {
7 "prefer-const": true,
8 "max-line-length": [true, 120],
9 "no-empty-interface": true,
10 "no-var-keyword": true,
11 "object-literal-shorthand": true,
12 "no-eval": true,
13 "space-before-function-paren": [
14 true,
15 {
16 "anonymous": "never",
17 "named": "never"
18 }
19 ],
20 "no-parameter-reassignment": true,
21 "align": [true, "parameters"],
22 "no-duplicate-imports": true,
23 "one-variable-per-declaration": [false, "ignore-for-loop"],
24 "triple-equals": [true, "allow-null-check"],
25 "comment-format": [true, "check-space"],
26 "indent": [false],
27 "whitespace": [
28 false,
29 "check-branch",
30 "check-decl",
31 "check-operator",
32 "check-preblock"
33 ],
34 "eofline": true,
35 "variable-name": [
36 true,
37 "check-format",
38 "allow-pascal-case",
39 "allow-snake-case",
40 "allow-leading-underscore"
41 ],
42 "semicolon": [true, "always", "ignore-interfaces"]
43 },
44 "rulesDirectory": []
45}