UNPKG

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