module.exports = { parser: '@typescript-eslint/parser', extends: [ 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint', 'plugin:prettier/recommended' ], plugins: ['@typescript-eslint', 'react', 'react-hooks', 'prettier'], ignorePatterns: ['build/*'], rules: { 'no-console': 'warn', 'react/react-in-jsx-scope': 'off', 'react/prop-types': 'off', '@typescript-eslint/no-empty-function': 'warn', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/ban-ts-comment': 'off' }, settings: { react: { version: 'latest' } } }