eslint-config-luxjs
Version:
Luxbet Eslint shareable config
18 lines (17 loc) • 415 B
JavaScript
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'],
},
};