UNPKG

1.65 kBJSONView Raw
1{
2 "rules": {
3 "ban": false,
4 "class-name": true,
5 "eofline": true,
6 "forin": true,
7 "interface-name": [true, "never-prefix"],
8 "jsdoc-format": true,
9 "label-position": true,
10 "member-access": true,
11 "member-ordering": [
12 true,
13 {
14 "order": [
15 "static-field",
16 "instance-field",
17 "constructor",
18 "public-instance-method",
19 "protected-instance-method",
20 "private-instance-method"
21 ]
22 }
23 ],
24 "no-any": false,
25 "no-arg": true,
26 "no-bitwise": true,
27 "no-conditional-assignment": true,
28 "no-consecutive-blank-lines": false,
29 "no-console": [true, "log", "debug", "info", "time", "timeEnd", "trace"],
30 "no-construct": true,
31 "no-debugger": true,
32 "no-duplicate-variable": true,
33 "no-empty": true,
34 "no-eval": true,
35 "no-inferrable-types": false,
36 "no-internal-module": true,
37 "no-null-keyword": false,
38 "no-require-imports": false,
39 "no-shadowed-variable": true,
40 "no-switch-case-fall-through": true,
41 "no-trailing-whitespace": true,
42 "no-unused-expression": true,
43 "no-var-keyword": true,
44 "no-var-requires": true,
45 "object-literal-sort-keys": false,
46 "radix": true,
47 "switch-default": true,
48 "triple-equals": [true, "allow-null-check"],
49 "typedef": [
50 false,
51 "call-signature",
52 "parameter",
53 "arrow-parameter",
54 "property-declaration",
55 "variable-declaration",
56 "member-variable-declaration"
57 ],
58 "variable-name": [
59 true,
60 "check-format",
61 "allow-leading-underscore",
62 "ban-keywords"
63 ]
64 }
65}