.eslintrc.cjs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* eslint-env node */
  2. require('@rushstack/eslint-patch/modern-module-resolution')
  3. module.exports = {
  4. root: true,
  5. ignorePatterns: ['/auto-imports.d.ts', '/components.d.ts'],
  6. extends: [
  7. 'plugin:vue/vue3-essential',
  8. 'eslint:recommended',
  9. '@vue/eslint-config-typescript/recommended',
  10. '@vue/eslint-config-prettier',
  11. './.eslintrc-auto-import.json'
  12. ],
  13. rules: {
  14. 'prettier/prettier': [
  15. 'warn',
  16. {
  17. semi: false,
  18. singleQuote: true,
  19. printWidth: 100,
  20. proseWrap: 'preserve',
  21. bracketSameLine: false,
  22. endOfLine: 'lf',
  23. tabWidth: 4,
  24. useTabs: false,
  25. trailingComma: 'none'
  26. }
  27. ],
  28. 'vue/multi-word-component-names': 'off',
  29. '@typescript-eslint/no-explicit-any': 'off',
  30. '@typescript-eslint/ban-ts-comment': 'off',
  31. 'no-undef': 'off',
  32. 'vue/prefer-import-from-vue': 'off',
  33. 'no-prototype-builtins': 'off',
  34. 'prefer-spread': 'off',
  35. '@typescript-eslint/no-non-null-assertion': 'off',
  36. '@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
  37. 'vue/no-mutating-props': 'off'
  38. },
  39. globals: {
  40. module: 'readonly'
  41. }
  42. }