eslint-config-luxjs
Version:
Luxbet Eslint shareable config
43 lines (38 loc) • 978 B
JavaScript
module.exports = {
extends: [
'luxjs',
],
env: {
es6: false,
},
rules: {
'arrow-body-style': ['off'],
'arrow-parens': ['off'],
'arrow-spacing': ['off'],
'constructor-super': ['off'],
'generator-star-spacing': ['off'],
'no-class-assign': ['off'],
'no-confusing-arrow': ['off'],
'no-const-assign': ['off'],
'no-dupe-class-members': ['off'],
'no-duplicate-imports': ['off'],
'no-new-symbol': ['off'],
'no-restricted-imports': ['off'],
'no-this-before-super': ['off'],
'no-useless-computed-key': ['off'],
'no-useless-constructor': ['off'],
'no-useless-rename': ['off'],
'no-var': ['off'],
'object-shorthand': ['off'],
'prefer-arrow-callback': ['off'],
'prefer-const': ['off'],
'prefer-reflect': ['off'],
'prefer-rest-params': ['off'],
'prefer-spread': ['off'],
'prefer-template': ['off'],
'require-yield': ['off'],
'sort-imports': ['off'],
'template-curly-spacing': ['off'],
'yield-star-spacing': ['off'],
},
};