.eslintrc.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. parser: "vue-eslint-parser",
  14. parserOptions: {
  15. parser: "@typescript-eslint/parser",
  16. ecmaVersion: 2020,
  17. sourceType: "module",
  18. jsxPragma: "React",
  19. ecmaFeatures: {
  20. jsx: true
  21. }
  22. },
  23. rules: {
  24. "@typescript-eslint/no-explicit-any": "off", // any
  25. "@typescript-eslint/explicit-module-boundary-types": "off", // setup()
  26. "@typescript-eslint/ban-types": "off",
  27. "@typescript-eslint/ban-ts-comment": "off",
  28. "@typescript-eslint/no-empty-function": "off",
  29. "@typescript-eslint/no-non-null-assertion": "off",
  30. "@typescript-eslint/no-unused-vars": [
  31. "error",
  32. {
  33. argsIgnorePattern: "^_",
  34. varsIgnorePattern: "^_"
  35. }
  36. ],
  37. "no-unused-vars": [
  38. "error",
  39. {
  40. argsIgnorePattern: "^_",
  41. varsIgnorePattern: "^_"
  42. }
  43. ]
  44. }
  45. };