Update .gitignore
This commit is contained in:
98
.gitignore
vendored
98
.gitignore
vendored
@ -1,27 +1,97 @@
|
||||
# ---> Go
|
||||
# If you prefer the allow list template instead of the deny list, see community template:
|
||||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
||||
#
|
||||
# Binaries for programs and plugins
|
||||
####################################
|
||||
# Général
|
||||
####################################
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
*.swo
|
||||
*.tmp
|
||||
*.log
|
||||
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
.vscode/
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
####################################
|
||||
# Go
|
||||
####################################
|
||||
# Binaries
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
# Go workspace
|
||||
bin/
|
||||
pkg/
|
||||
|
||||
# Go build artifacts
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
coverage.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
# Go workspace file
|
||||
# Go modules
|
||||
go.work
|
||||
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/
|
||||
|
||||
Reference in New Issue
Block a user