eslint.config.js 977 B

123456789101112131415161718192021222324252627282930
  1. import pluginVue from "eslint-plugin-vue"
  2. import vueTsEslintConfig from "@vue/eslint-config-typescript"
  3. import skipFormatting from "@vue/eslint-config-prettier/skip-formatting"
  4. export default [
  5. {
  6. name: "app/files-to-lint",
  7. files: ["**/*.{ts,mts,tsx,vue}"]
  8. },
  9. {
  10. name: "app/files-to-ignore",
  11. ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**"]
  12. },
  13. ...pluginVue.configs["flat/essential"],
  14. ...vueTsEslintConfig(),
  15. skipFormatting,
  16. {
  17. name: "app/custom-rules",
  18. rules: {
  19. /* ts相关 */
  20. "@typescript-eslint/no-empty-function": "off", // 可以为空函数
  21. "@typescript-eslint/explicit-module-boundary-types": "off", //函数不需要返回类型也可以
  22. "@typescript-eslint/no-explicit-any": "off", //可以为any
  23. "@typescript-eslint/no-non-null-assertion": "off", //! 非空断言
  24. "@typescript-eslint/no-this-alias": "off" //忽略this关键字
  25. }
  26. }
  27. ]