Skip to content

Commit 91347e6

Browse files
feat: add Kotlin/Android error and stacktrace compression
1 parent 7fada28 commit 91347e6

3 files changed

Lines changed: 738 additions & 3 deletions

File tree

src/discover/rules.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub const PATTERNS: &[&str] = &[
7474
r"^shellcheck\b",
7575
r"^shopify\s+theme\s+(push|pull)",
7676
r"^sops\b",
77-
r"^swift\s+build\b",
77+
r"^swift\s+(build|test)\b",
7878
r"^systemctl\s+status\b",
7979
r"^terraform\s+plan",
8080
r"^tofu\s+(fmt|init|plan|validate)(\s|$)",
@@ -555,8 +555,8 @@ pub const RULES: &[CzRule] = &[
555555
cz_cmd: "contextzip swift",
556556
rewrite_prefixes: &["swift"],
557557
category: "Build",
558-
savings_pct: 65.0,
559-
subcmd_savings: &[],
558+
savings_pct: 80.0,
559+
subcmd_savings: &[("test", 85.0), ("build", 80.0)],
560560
subcmd_status: &[],
561561
},
562562
CzRule {

0 commit comments

Comments
 (0)