.eslintrc.js 438 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/vue3-essential',
  8. 'eslint:recommended',
  9. '@vue/typescript/recommended',
  10. '@vue/prettier',
  11. '@vue/prettier/@typescript-eslint'
  12. ],
  13. rules: {
  14. '@typescript-eslint/no-explicit-any': ['off'],
  15. "prettier/prettier": ["off", {
  16. "singleQuote": true,
  17. "semi": false
  18. }]
  19. },
  20. parserOptions: {
  21. ecmaVersion: 2020
  22. }
  23. };