| 1234567891011121314151617181920212223242526272829303132333435 |
- module.exports = {
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:react/recommended',
- 'plugin:react-hooks/recommended',
- 'prettier'
- ],
- plugins: ['@typescript-eslint', 'react', 'react-hooks', 'prettier'],
- env: {
- browser: true,
- es2021: true,
- node: true
- },
- settings: {
- react: {
- version: 'detect'
- }
- },
- parser: '@typescript-eslint/parser',
- parserOptions: {
- ecmaFeatures: {
- jsx: true
- },
- ecmaVersion: 12,
- sourceType: 'module'
- },
- rules: {
- 'prettier/prettier': 'error',
- 'react/react-in-jsx-scope': 'off',
- '@typescript-eslint/explicit-module-boundary-types': 'off',
- '@typescript-eslint/no-explicit-any': 'warn',
- 'react/prop-types': 'off'
- }
- };
|