eslint-config-uber-es5
Version:
The base eslint config for web JavaScript at Uber
25 lines (24 loc) • 407 B
JSON
{
"rules": {
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-shadow": 2,
"no-shadow-restricted-names": 2,
"no-undef-init": 2,
"no-undef": 2,
"no-undefined": 0,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "none"
}
],
"no-use-before-define": [
2,
"nofunc"
],
"init-declarations": 0
}
}