mirror of
https://github.com/github/spec-kit.git
synced 2026-07-04 04:45:43 +08:00
* chore: ignore Copilot dogfooding scaffolding in .gitignore Ignore the directories and files generated by `specify init --integration copilot` so the dogfooding scaffolding used during Spec Kit feature development isn't accidentally committed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * chore: fix gitignore trailing whitespace in comment Remove trailing whitespace and extra comment-only lines in the Copilot dogfooding ignore block. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
62 lines
863 B
Plaintext
62 lines
863 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
*.tmp
|
|
|
|
# Project specific
|
|
*.log
|
|
.env
|
|
.env.local
|
|
*.lock
|
|
|
|
# Spec Kit-specific files
|
|
.genreleases/
|
|
*.zip
|
|
sdd-*/
|
|
docs/dev
|
|
|
|
# Extension system
|
|
.specify/extensions/.cache/
|
|
.specify/extensions/.backup/
|
|
.specify/extensions/*/local-config.yml
|
|
|
|
# The following directories/file are intentionally ignored so that they are not accidentally
|
|
# committed to the repository. They contain the scaffolding `specify init --integration copilot`
|
|
# does and they are meant for dogfooding Spec Kit during its own feature development.
|
|
.github/agents/
|
|
.github/prompts/
|
|
.github/copilot-instructions.md
|
|
.specify/
|
|
specs/
|