add java and maven support

This commit is contained in:
Bartal Laearsson
2026-08-05 09:59:46 +01:00
parent a9ebf41bf9
commit 4992bcc7f7
+9
View File
@@ -19,6 +19,11 @@ var DefaultIgnores = []string{
"node_modules", "node_modules",
"vendor", "vendor",
"bin", "bin",
"target",
"build",
"dist",
".idea",
".vscode",
} }
var DefaultExts = []string{ var DefaultExts = []string{
@@ -30,6 +35,10 @@ var DefaultExts = []string{
".pdf", ".doc", ".docx", ".xls", ".xlsx", ".pdf", ".doc", ".docx", ".xls", ".xlsx",
".pem", ".key", ".cert", ".pem", ".key", ".cert",
".db", ".sqlite", ".sqlite3", ".db", ".sqlite", ".sqlite3",
".class", // Java compiled bytecode
".jar", // JAR archives
".war",
".ear",
} }
type stringSlice []string type stringSlice []string