You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
512 B
32 lines
512 B
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true,
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 5,
|
|
"sourceType": "script"
|
|
},
|
|
"rules": {
|
|
"comma-spacing": "warn",
|
|
"eqeqeq": "warn",
|
|
"newline-after-var": "off",
|
|
"newline-before-return": "off",
|
|
"no-multi-spaces": "warn",
|
|
"object-curly-spacing": [
|
|
"warn",
|
|
"never",
|
|
{
|
|
"arraysInObjects": true,
|
|
"objectsInObjects": true
|
|
}
|
|
],
|
|
"strict": [
|
|
"warn",
|
|
"global"
|
|
],
|
|
"yoda": "warn"
|
|
}
|
|
};
|
|
|