have2
Version:
Slick arguments validator for javascript functions.
19 lines (18 loc) • 427 B
Plain Text
{
"extends": "standard",
"env": {
"node": true,
"browser": true
},
"rules": {
"max-len": ["error", 100],
"arrow-parens": 0,
"indent": ["error", 2, { "SwitchCase": 1 }],
"no-shadow": ["error", {
"builtinGlobals": true, "hoist": "all"
}],
"no-use-before-define": ["error", { "functions": true, "classes": true }],
"no-inner-declarations": [2, "both"],
"vars-on-top": 2
}
}