用biome对astro、svelte、vue格式化时配置修改

biome.json中添加:

"overrides": [
    {
      "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
      "linter": {
        "rules": {
          "style": {
            "useConst": "off",
            "useImportType": "off"
          },
          "correctness": {
            "noUnusedVariables": "off",
            "noUnusedImports": "off"
          }
        }
      }
    }
  ]
posted @ 2026-04-01 10:26  卓能文  阅读(5)  评论(0)    收藏  举报