UNPKG

eslint-config-luxjs

Version:
18 lines (17 loc) 415 B
module.exports = { rules: { // Variables 'init-declarations': ['off'], 'no-catch-shadow': ['off'], 'no-delete-var': ['off'], 'no-label-var': ['off'], 'no-restricted-globals': ['off'], 'no-shadow': ['off'], 'no-shadow-restricted-names': ['off'], 'no-undef': ['error'], 'no-undef-init': ['off'], 'no-undefined': ['off'], 'no-unused-vars': ['error'], 'no-use-before-define': ['off'], }, };