2
0

.eslintrc.js 848 B

12345678910111213141516171819202122232425262728293031
  1. module.exports = {
  2. parser: '@typescript-eslint/parser',
  3. parserOptions: {
  4. project: 'tsconfig.json',
  5. tsconfigRootDir: __dirname,
  6. sourceType: 'module',
  7. },
  8. plugins: ['@typescript-eslint/eslint-plugin'],
  9. extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
  10. root: true,
  11. env: {
  12. node: true,
  13. jest: true,
  14. },
  15. ignorePatterns: ['.eslintrc.js'],
  16. rules: {
  17. 'no-unused-vars': 'off',
  18. '@typescript-eslint/no-unused-vars': [
  19. 'warn',
  20. {
  21. argsIgnorePattern: '^_',
  22. varsIgnorePattern: '^_',
  23. caughtErrorsIgnorePattern: '^_',
  24. },
  25. ],
  26. '@typescript-eslint/interface-name-prefix': 'off',
  27. '@typescript-eslint/explicit-function-return-type': 'off',
  28. '@typescript-eslint/explicit-module-boundary-types': 'off',
  29. '@typescript-eslint/no-explicit-any': 'off',
  30. },
  31. };