UNPKG

566 BPlain TextView Raw
1{
2 // http://eslint.org/docs/user-guide/configuring.html
3 // https://gist.github.com/cletusw/e01a85e399ab563b1236
4 "env": {
5 "browser": false,
6 "es6": true,
7 "node": true
8 },
9 "extends": "eslint:recommended",
10 "rules": {
11 "indent": [ "error", 4 ],
12 "linebreak-style": [ "error", "unix" ],
13 "no-console": "off",
14 "no-debugger": "off",
15 "no-shadow": "off",
16 "quotes": "off", // http://eslint.org/docs/rules/quotes
17 "semi": [ "error", "always" ]
18 }
19}