From 4992bcc7f77378aa98a5b7997f61843caa46a098 Mon Sep 17 00:00:00 2001 From: Bartal Laearsson Date: Wed, 5 Aug 2026 09:59:46 +0100 Subject: [PATCH] add java and maven support --- internal/config/config.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/internal/config/config.go b/internal/config/config.go index 7747293..769fe0e 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -19,6 +19,11 @@ var DefaultIgnores = []string{ "node_modules", "vendor", "bin", + "target", + "build", + "dist", + ".idea", + ".vscode", } var DefaultExts = []string{ @@ -30,6 +35,10 @@ var DefaultExts = []string{ ".pdf", ".doc", ".docx", ".xls", ".xlsx", ".pem", ".key", ".cert", ".db", ".sqlite", ".sqlite3", + ".class", // Java compiled bytecode + ".jar", // JAR archives + ".war", + ".ear", } type stringSlice []string