UNPKG

611 BJSONView Raw
1{
2 "rules": {
3 "class-name": true,
4 "comment-format": [
5 true,
6 "check-space"
7 ],
8 "curly": true,
9 "eofline": true,
10 "indent": [true],
11 "jsdoc-format": true,
12 "member-ordering": [
13 true,
14 "public-before-private",
15 "static-before-instance",
16 "variables-before-functions"
17 ],
18 "no-arg": true,
19 "no-consecutive-blank-lines": [true],
20 "no-debugger": true,
21 "no-duplicate-variable": true,
22 "no-trailing-whitespace": true,
23 "no-var-keyword": true,
24 "quotemark": [true],
25 "typedef-whitespace": [true],
26 "semicolon": [true]
27 }
28}