.eslintrc 931 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "env": {
  3. "browser": true,
  4. "es2021": true,
  5. "node": true
  6. },
  7. "extends": [
  8. "eslint:recommended",
  9. "plugin:vue/vue3-recommended",
  10. "plugin:@typescript-eslint/recommended",
  11. "plugin:prettier/recommended"
  12. ],
  13. "parser": "vue-eslint-parser",
  14. "parserOptions": {
  15. // "extraFileExtensions": [".vue"],
  16. // "project": ["./tsconfig.json"],
  17. "ecmaVersion": "latest",
  18. "sourceType": "module",
  19. "parser": "@typescript-eslint/parser"
  20. },
  21. "plugins": ["vue", "@typescript-eslint"],
  22. "rules": {
  23. // "no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["state"] }],
  24. // "import/prefer-default-export": "off",
  25. // "@typescript-eslint/explicit-module-boundary-types": "off",
  26. // // 避免使用Q_作为查询参数时报错
  27. // "@typescript-eslint/camelcase": "off",
  28. // 允许使用 any 类型
  29. "@typescript-eslint/no-explicit-any": "off"
  30. }
  31. }