UNPKG

1.03 kBPlain TextView Raw
1{
2 "env": {
3 "browser": true,
4 "node": true,
5 "mocha": true
6 },
7 "rules": {
8 "quotes": [
9 1,
10 "single"
11 ],
12 "no-mixed-requires": [
13 0,
14 false
15 ],
16 "no-underscore-dangle": [
17 0,
18 false
19 ],
20 "yoda": [
21 1,
22 "always"
23 ],
24 "indent": [
25 2,
26 2
27 ],
28 "brace-style": [
29 2,
30 "1tbs"
31 ],
32 "comma-style": [
33 2,
34 "last"
35 ],
36 "default-case": 2,
37 "func-style": [
38 2,
39 "declaration"
40 ],
41 "guard-for-in": 2,
42 "no-floating-decimal": 2,
43 "no-nested-ternary": 2,
44 "no-undefined": 2,
45 "radix": 2,
46 "space-after-function-name": [
47 1,
48 "always"
49 ],
50 "space-after-keywords": [
51 2,
52 "always"
53 ],
54 "space-before-blocks": 2,
55 "spaced-line-comment": [
56 2,
57 "always",
58 {
59 "exceptions": [
60 "-"
61 ]
62 }
63 ],
64 "strict": [
65 2,
66 "global"
67 ],
68 "wrap-iife": 2,
69 "camelcase": false,
70 "new-cap": false
71 }
72}