db-vendo-client/.eslintrc.json
2020-02-27 17:10:03 +01:00

28 lines
No EOL
644 B
JSON

{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"ignorePatterns": ["node_modules", "test", "*example.js"],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-irregular-whitespace": "off",
"no-mixed-spaces-and-tabs": "off",
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"ignoreRestSiblings": false
}
]
}
}