fix ignore patterns

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-09-16 11:51:50 -05:00
parent f1487458ea
commit b3dbdf3f73

View file

@ -30,18 +30,18 @@ return {
}, },
defaults = { defaults = {
file_ignore_patterns = { file_ignore_patterns = {
"node_modules$", "node_modules",
"package-lock.json", "package-lock.json",
"target$", "target",
".git", ".git",
".direnv", ".direnv",
".pytest_cache", ".pytest_cache",
"__pycache__", "__pycache__",
".venv", ".venv",
"venv$", "venv",
".mypy_cache", ".mypy_cache",
"dist$", "dist",
"build$", "build",
"poackage-lock.json", "poackage-lock.json",
".aider*", ".aider*",
}, },