Git: update gitignore prompt
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
# Betriebssystem
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
*~
|
||||
|
||||
# Editor und IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Abhängigkeiten und Pakete
|
||||
node_modules/
|
||||
bower_components/
|
||||
jspm_packages/
|
||||
|
||||
# Build-Artefakte
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
.next/
|
||||
.nuxt/
|
||||
|
||||
# Umgebungs- und Konfigurationsdateien
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# Cache und temporäre Dateien
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.npm/
|
||||
.yarn-integrity
|
||||
.pnp.*
|
||||
.eslintcache
|
||||
.stylelintcache
|
||||
|
||||
# Test- und Coverage-Dateien
|
||||
coverage/
|
||||
.nyc_output/
|
||||
|
||||
# KI-Werkzeuge
|
||||
.claude/
|
||||
.codex/
|
||||
.cursor/
|
||||
.copilot/
|
||||
@@ -0,0 +1,27 @@
|
||||
# Sistema operativo
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
*~
|
||||
|
||||
# Editor e IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Herramientas de IA
|
||||
.claude/
|
||||
.codex/
|
||||
.cursor/
|
||||
.copilot/
|
||||
|
||||
# Elementos adicionales
|
||||
history/
|
||||
to_history/
|
||||
sandbox/
|
||||
@@ -0,0 +1,71 @@
|
||||
# Operating system
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
*~
|
||||
|
||||
# Editor and IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Dependencies and packages
|
||||
venv/
|
||||
env/
|
||||
.venv/
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Build artifacts
|
||||
dist/
|
||||
build/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
|
||||
# Environment and local configuration files
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
local_settings.py
|
||||
secrets.py
|
||||
|
||||
# Cache and temporary files
|
||||
.cache/
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
*.log
|
||||
|
||||
# Testing and coverage
|
||||
htmlcov/
|
||||
.coverage
|
||||
.coverage.*
|
||||
coverage.xml
|
||||
*.cover
|
||||
.tox/
|
||||
nosetests.xml
|
||||
|
||||
# Django
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
media/
|
||||
staticfiles/
|
||||
|
||||
# AI tools
|
||||
.claude/
|
||||
.codex/
|
||||
.cursor/
|
||||
.copilot/
|
||||
Reference in New Issue
Block a user