From 2b6b5706bb5cd9c8bddebf9d5d1e08fcd9310cc9 Mon Sep 17 00:00:00 2001 From: blomios Date: Tue, 20 Jan 2026 14:04:41 +0000 Subject: [PATCH] Update .gitignore --- .gitignore | 98 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 84 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 5b90e79f..748f503a 100644 --- a/.gitignore +++ b/.gitignore @@ -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/