catalyst-frontend
Version:
A configurable frontend build pipeline that caters for everything from simple SASS compilation only, right through to ES2015 plus React.
21 lines (20 loc) • 439 B
JSON
{
"env": {
"browser": true
},
"extends": [
"eslint-config-airbnb-es5"
],
"globals": {},
"rules": {
"comma-dangle": ["warn", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "ignore",
"exports": "ignore",
"functions": "ignore"
}],
"max-len": ["warn", { "code": 100, "ignoreComments": true }],
"quotes": ["warn", "single", { "avoidEscape": true }]
}
}