UNPKG

448 BJSONView Raw
1{
2 "env": {
3 "browser": true,
4 "commonjs": true,
5 "es6": true,
6 "node": true
7 },
8 "globals": {
9 "direape": true
10 },
11 "extends": "eslint:recommended",
12 "rules": {
13 "no-console": "off",
14 "no-unused-vars": "off",
15 "indent": [
16 "warn",
17 2
18 ],
19 "linebreak-style": [
20 "warn",
21 "unix"
22 ],
23 "quotes": [
24 "warn",
25 "single"
26 ],
27 "semi": [
28 "warn",
29 "always"
30 ]
31 }
32}