npm-audit-helper
Version:
Helps you understand your npm audit findings so they're not too overwhelming
24 lines (23 loc) • 511 B
Plain Text
{
"extends": ["airbnb-base"],
"env": {
"node": true
},
"rules": {
"id-length": 0,
"max-len": 0,
"consistent-return": 0,
"arrow-parens": 0,
"no-underscore-dangle": 0,
"object-curly-newline": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
"prefer-destructuring": 0,
"no-restricted-syntax": 0
}
}