Update .gitignore

This commit is contained in:
2026-01-20 14:04:41 +00:00
parent e8e2a4a01e
commit 2b6b5706bb

98
.gitignore vendored
View File

@ -1,27 +1,97 @@
# ---> Go ####################################
# If you prefer the allow list template instead of the deny list, see community template: # Général
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore ####################################
# .DS_Store
# Binaries for programs and plugins Thumbs.db
*.swp
*.swo
*.tmp
*.log
.env
.env.*
!.env.example
.vscode/
.idea/
*.iml
####################################
# Go
####################################
# Binaries
*.exe *.exe
*.exe~ *.exe~
*.dll *.dll
*.so *.so
*.dylib *.dylib
# Test binary, built with `go test -c` # Go workspace
bin/
pkg/
# Go build artifacts
*.test *.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out *.out
coverage.out
# Dependency directories (remove the comment below to include it) # Go modules
# vendor/
# Go workspace file
go.work go.work
go.work.sum go.work.sum
# env file ####################################
.env # Rust
####################################
# Cargo
target/
# Rustfmt / Clippy
*.rs.bk
# Cargo.lock
# (Décommente si c'est une lib, garde-le si c'est une app)
# Cargo.lock
####################################
# Lovable.dev (code généré / IA)
####################################
# Outputs générés automatiquement
lovable-output/
lovable-generated/
.generated/
generated/
.ai/
.ai-output/
# Snapshots / prompts / états IA
prompts/
prompt-history/
sessions/
runs/
# Fichiers temporaires IA
*.prompt
*.completion
*.response
*.lovable
####################################
# Tests / coverage
####################################
coverage/
*.cov
lcov.info
####################################
# Docker
####################################
docker-compose.override.yml
####################################
# OS / divers
####################################
node_modules/
dist/
build/
out/
.cache/