generator-bunny
Version:
Jumpstart node module, like a bunny
27 lines (26 loc) • 555 B
JSON
{
"parser": "babel-eslint",
"extends": [
"airbnb-base",
"plugin:flowtype/recommended"
],
"env": {
"jest": true,
"node": true
},
"plugins": [
"flowtype"
],
"rules": {
"arrow-parens": ["error", "as-needed"],
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"strict": "off"
}
}