.eslintrc.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "no-debugger": "off",
  26. "@typescript-eslint/explicit-module-boundary-types": "off", // setup()
  27. "@typescript-eslint/ban-types": "off",
  28. "@typescript-eslint/ban-ts-comment": "off",
  29. "@typescript-eslint/no-empty-function": "off",
  30. "@typescript-eslint/no-non-null-assertion": "off",
  31. "@typescript-eslint/no-unused-vars": [
  32. "error",
  33. {
  34. argsIgnorePattern: "^_",
  35. varsIgnorePattern: "^_"
  36. }
  37. ],
  38. "no-unused-vars": [
  39. "error",
  40. {
  41. argsIgnorePattern: "^_",
  42. varsIgnorePattern: "^_"
  43. }
  44. ]
  45. }
  46. };