eslint-config-themis
Version:
ESLint shareable config for Warby Parker
17 lines (16 loc) • 377 B
JavaScript
module.exports = {
"rules": {
// "init-declarations": 0,
// "no-catch-shadow": 0,
"no-delete-var": 2,
// "no-label-var": 0,
// "no-restricted-globals": 0,
// "no-shadow-restricted-names": 0,
// "no-shadow": 0,
// "no-undef-init": 0,
"no-undef": 2,
// "no-undefined": 0,
"no-unused-vars": 2,
// "no-use-before-define": 0
}
};