| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- module.exports = {
- env: {
- browser: true,
- es2021: true,
- node: true,
- },
- extends: [
- 'eslint:recommended',
- '@typescript-eslint/recommended',
- '@typescript-eslint/recommended-requiring-type-checking',
- ],
- parser: '@typescript-eslint/parser',
- parserOptions: {
- ecmaVersion: 'latest',
- sourceType: 'module',
- project: './tsconfig.json',
- },
- plugins: [
- '@typescript-eslint',
- 'react',
- 'react-hooks',
- ],
- rules: {
- // React specific rules
- 'react/jsx-uses-react': 'off',
- 'react/react-in-jsx-scope': 'off',
- 'react-hooks/rules-of-hooks': 'error',
- 'react-hooks/exhaustive-deps': 'warn',
- // TypeScript rules
- '@typescript-eslint/no-unused-vars': 'error',
- '@typescript-eslint/explicit-function-return-type': 'off',
- '@typescript-eslint/explicit-module-boundary-types': 'off',
- '@typescript-eslint/no-explicit-any': 'warn',
- // General rules
- 'no-console': 'warn',
- 'prefer-const': 'error',
- 'no-var': 'error',
- },
- settings: {
- react: {
- version: 'detect',
- },
- },
- };
|