Files
flyer-crawler.projectium.com/.eslintrc.cjs
Torben Sorensen eaf2e783c5
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 9s
deploy linting and first unit test maybe
2025-11-11 20:40:04 -08:00

18 lines
465 B
JavaScript

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