module.exports = { root: true, parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'react-refresh', 'turbo'], extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended', 'prettier', ], rules: { '@typescript-eslint/ban-ts-comment': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-inferrable-types': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-unused-vars': [ 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_', }, ], 'no-debugger': 'warn', 'no-extra-boolean-cast': 'off', }, ignorePatterns: ['*.spec.*', '*.test.*', '.eslintrc.js', 'jest.config.js'], env: { browser: true, node: true, jest: true, }, };