123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- module.exports = {
- env: {
- browser: true,
- es2021: true,
- node: true,
- commonjs: true,
- },
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:react/recommended',
- 'plugin:react-hooks/recommended',
- 'plugin:prettier/recommended',
- 'prettier',
- ],
- parser: '@typescript-eslint/parser',
- parserOptions: {
- ecmaFeatures: {
- jsx: true,
- },
- ecmaVersion: 'latest',
- sourceType: 'module',
- },
- plugins: ['@typescript-eslint', 'prettier'],
- rules: {
- 'prettier/prettier': 'error',
- 'react/react-in-jsx-scope': 'off',
- 'react/prop-types': 'off',
- '@typescript-eslint/no-explicit-any': 'off',
- '@typescript-eslint/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
- '@typescript-eslint/no-unused-vars': [
- 'error',
- {
- args: 'all',
- argsIgnorePattern: '^_',
- caughtErrors: 'all',
- caughtErrorsIgnorePattern: '^_',
- destructuredArrayIgnorePattern: '^_',
- varsIgnorePattern: '^_',
- ignoreRestSiblings: true,
- },
- ],
- quotes: ['error', 'single', { allowTemplateLiterals: true, avoidEscape: true }],
- semi: ['error', 'always'],
- },
- settings: {
- react: {
- version: 'detect',
- },
- 'import/resolver': {
- typescript: {
- alwaysTryTypes: true,
- project: './tsconfig.json',
- },
- },
- },
- };
|