fix lint and remove all eslint overrides

This commit is contained in:
Przemek Więch
2026-04-28 23:39:47 +02:00
parent 36852348a8
commit 3c43a3e23e
6 changed files with 15 additions and 28 deletions

View File

@@ -23,23 +23,7 @@ module.exports = {
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
],
rules: {
'no-case-declarations': 'off',
'prefer-spread': 'off',
'no-extra-boolean-cast': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'react/prop-types': 'off',
'react/react-in-jsx-scope': 'off',
'react/display-name': 'off',
'react/no-unescaped-entities': 'off',
},
rules: {},
};