Unverified 提交 b22928dd authored 作者: Olyno's avatar Olyno 提交者: GitHub

chore: ignore venv dirs (#1617)

# Description This pull request ignore `venv` directories and closes #1415 <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Exclude Python virtual environment directories (.venv, venv) from codebase scanning to reduce noise and avoid indexing dependencies. This aligns with existing excludes like node_modules and build outputs. <!-- End of auto-generated description by cubic. -->
上级 d837abe5
......@@ -56,7 +56,15 @@ const ALLOWED_EXTENSIONS = [
// be conservative and never include these directories.
//
// ex: https://github.com/dyad-sh/dyad/issues/727
const EXCLUDED_DIRS = ["node_modules", ".git", "dist", "build", ".next"];
const EXCLUDED_DIRS = [
"node_modules",
".git",
"dist",
"build",
".next",
".venv",
"venv",
];
// Files to always exclude
const EXCLUDED_FILES = ["pnpm-lock.yaml", "package-lock.json"];
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论