123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = {
- parser: '@typescript-eslint/parser',
- parserOptions: {
- ecmaVersion: 2022,
- sourceType: 'module',
- project: './tsconfig.json',
- },
- plugins: ['@typescript-eslint', 'prettier'],
- extends: [
- 'eslint:recommended',
- '@typescript-eslint/recommended',
- '@typescript-eslint/recommended-requiring-type-checking',
- 'prettier',
- ],
- root: true,
- env: {
- node: true,
- jest: true,
- },
- ignorePatterns: ['.eslintrc.js', 'jest.config.js', 'dist/'],
- rules: {
- '@typescript-eslint/interface-name-prefix': 'off',
- '@typescript-eslint/explicit-function-return-type': 'error',
- '@typescript-eslint/explicit-module-boundary-types': 'error',
- '@typescript-eslint/no-explicit-any': 'warn',
- '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
- '@typescript-eslint/prefer-nullish-coalescing': 'error',
- '@typescript-eslint/prefer-optional-chain': 'error',
- '@typescript-eslint/no-floating-promises': 'error',
- '@typescript-eslint/await-thenable': 'error',
- 'prettier/prettier': 'error',
- 'no-console': ['warn', { allow: ['warn', 'error'] }],
- 'prefer-const': 'error',
- 'no-var': 'error',
- },
- };
|