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",
"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