chore: remove unused eslint config

This commit is contained in:
Bill Church 2024-08-21 14:21:48 +00:00
parent 76b2f787fd
commit e30c0c1c9b
No known key found for this signature in database

View file

@ -1,18 +0,0 @@
const a11yOff = Object.keys(require('eslint-plugin-jsx-a11y').rules)
.reduce((acc, rule) => { acc[`jsx-a11y/${rule}`] = 'off'; return acc }, {})
module.exports = {
extends: ['airbnb', 'prettier', 'plugin:node/recommended'],
plugins: ['pretftier'],
rules: {
...a11yOff,
'prettier/prettier': 'error',
'no-unused-vars': 'warn',
'no-console': 'off',
'func-names': 'off',
'no-process-exit': 'off',
'object-shorthand': 'off',
'class-methods-use-this': 'off',
"semi": [2, "never"]
},
};