DEVX-8: fix: expand DEFAULT_INFRASTRUCTURE to cover all common project files

This commit is contained in:
2026-06-22 21:12:16 +00:00
parent 8ea044a942
commit 53990dc10c
3 changed files with 43 additions and 1 deletions
+9
View File
@@ -271,19 +271,28 @@ DEFAULT_INFRASTRUCTURE: list[str] = [
# Build tooling
"Makefile",
"cliff.toml",
"uv.lock",
# Linting / formatting config
".pre-commit-config.yaml",
".ruff.toml",
".ansible-lint",
".checkmake.ini",
".editorconfig",
# Environment templates (not the actual .env which is gitignored)
".env.example",
# Git config
".gitignore",
".gitattributes",
# Project-level documentation (not part of the installed package)
"AGENTS.md",
"README.md",
"CHANGELOG.md",
"TROUBLESHOOTING.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"REVIEW_CHECKLIST.md",
# Agent/CI tooling config (not part of the installed package)
".devin/**",
# Generated venv activation scripts (created by `make setup`)
"activate.sh",
"activate.fish",