.eslintrc.js 818 B

123456789101112131415161718192021222324252627282930313233
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true,
  5. },
  6. extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/typescript/recommended', '@vue/prettier', '@vue/prettier/@typescript-eslint'],
  7. parserOptions: {
  8. ecmaVersion: 2020,
  9. },
  10. rules: {
  11. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  12. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  13. '@typescript-eslint/no-explicit-any': ['off'],
  14. 'max-len': [
  15. 'warn',
  16. {
  17. code: 10000,
  18. },
  19. ],
  20. 'no-unused-vars': 'off',
  21. 'no-console': 'off',
  22. 'prettier/prettier': [
  23. 'warn',
  24. {
  25. singleQuote: true,
  26. trailingComma: 'es5',
  27. bracketSpacing: true,
  28. jsxBracketSameLine: true,
  29. printWidth: 160,
  30. },
  31. ],
  32. },
  33. };