Revert "⚙️ Add Prettier and ESLint config with pre-commit" (#644)

This reverts commit 1b8b42cee5.
This commit is contained in:
Alejandra
2024-03-08 14:10:09 +01:00
committed by GitHub
parent 92a5550011
commit fd9e8e0803
8 changed files with 221 additions and 3572 deletions

View File

@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}