123456789101112131415161718192021222324252627282930 |
- import pluginVue from "eslint-plugin-vue"
- import vueTsEslintConfig from "@vue/eslint-config-typescript"
- import skipFormatting from "@vue/eslint-config-prettier/skip-formatting"
- export default [
- {
- name: "app/files-to-lint",
- files: ["**/*.{ts,mts,tsx,vue}"]
- },
- {
- name: "app/files-to-ignore",
- ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**"]
- },
- ...pluginVue.configs["flat/essential"],
- ...vueTsEslintConfig(),
- skipFormatting,
- {
- name: "app/custom-rules",
- rules: {
- /* ts相关 */
- "@typescript-eslint/no-empty-function": "off", // 可以为空函数
- "@typescript-eslint/explicit-module-boundary-types": "off", //函数不需要返回类型也可以
- "@typescript-eslint/no-explicit-any": "off", //可以为any
- "@typescript-eslint/no-non-null-assertion": "off", //! 非空断言
- "@typescript-eslint/no-this-alias": "off" //忽略this关键字
- }
- }
- ]
|