2017-06-12 22:30:33 +00:00
|
|
|
{
|
|
|
|
"env": { "shared-node-browser":true },
|
|
|
|
"globals": {},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 3,
|
|
|
|
},
|
|
|
|
"plugins": [ "html", "json" ],
|
2018-01-17 00:55:27 +00:00
|
|
|
"extends": "eslint:recommended",
|
2017-06-12 22:30:33 +00:00
|
|
|
"rules": {
|
|
|
|
"comma-style": [ 2, "last" ],
|
2018-01-17 00:55:27 +00:00
|
|
|
"comma-dangle": [ 2, "never" ],
|
|
|
|
"curly": 0,
|
|
|
|
"no-bitwise": 0,
|
|
|
|
"no-console": 0,
|
2017-06-12 22:30:33 +00:00
|
|
|
"no-trailing-spaces": 2,
|
2018-01-17 00:55:27 +00:00
|
|
|
"semi": [ 2, "always" ]
|
2017-06-12 22:30:33 +00:00
|
|
|
}
|
|
|
|
}
|