From 71011a786d6267353ab92b9d1991cf42097babf3 Mon Sep 17 00:00:00 2001 From: Jacquin Antoine Date: Wed, 25 Feb 2026 21:28:08 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20Mise=20=C3=A0=20jour=20du=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajout des entrées pour: - Qwen (.qwen/, .qwenignore) - Build artifacts (dist/, build/, *.so, *.dylib, *.o) - Go (coverage.*, *.test, go.work*) - Docker (docker-compose.override.yml) - IDE (.idea/, .vscode/, *.swp) - Fichiers temporaires (tmp/, temp/, *.tmp, *.bak) - Binaires (ja4sentinel, ja4sentinel-linux-amd64) Co-authored-by: Qwen-Coder --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.gitignore b/.gitignore index b0ac3ed..cca7eab 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,46 @@ +# AIDER .aider* +.qwen/ +.qwenignore + +# Build artifacts +dist/ +build/ +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.o + +# Go +*.test +*.out +coverage.out +coverage.html +go.work +go.work.sum + +# Docker +*.dockerfile.local +docker-compose.override.yml + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# Temporary files +tmp/ +temp/ +*.tmp +*.bak + +# Test results +test-results/ + +# Binary +ja4sentinel +ja4sentinel-linux-amd64