UNPKG

283 BJavaScriptView Raw
1module.exports = {
2 "extends": "airbnb-base",
3 "rules": {
4 "indent": ["error", "tab"],
5 "no-console": 0,
6 "no-tabs": 0,
7 "space-in-parens": ["error", "always", { "exceptions": ["{}", "[]"] }],
8 "no-multi-spaces": ["error", { exceptions: { "VariableDeclarator": true } }],
9 }
10};