19 lines
357 B
Plaintext
19 lines
357 B
Plaintext
|
{
|
||
|
"env": { "shared-node-browser":true },
|
||
|
"globals": {},
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 3,
|
||
|
},
|
||
|
"plugins": [ "html", "json" ],
|
||
|
"!extends": "eslint:recommended",
|
||
|
"rules": {
|
||
|
"no-console": 0,
|
||
|
"no-bitwise": 0,
|
||
|
"curly": 0,
|
||
|
"comma-style": [ 2, "last" ],
|
||
|
"no-trailing-spaces": 2,
|
||
|
"semi": [ 2, "always" ],
|
||
|
"comma-dangle": [ 2, "never" ]
|
||
|
}
|
||
|
}
|