From 39240b3317728c8a72f98302d66adf0e98a4f86d Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Tue, 21 Apr 2026 08:52:17 -0400 Subject: [PATCH] chore: Remove MaxLineLength suppression guidance from testing skill (#6813) --- .claude/skills/testing-android-code/SKILL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.claude/skills/testing-android-code/SKILL.md b/.claude/skills/testing-android-code/SKILL.md index 3fe477dd30..20b14effac 100644 --- a/.claude/skills/testing-android-code/SKILL.md +++ b/.claude/skills/testing-android-code/SKILL.md @@ -245,8 +245,6 @@ fun `test exception`() { Common testing mistakes in Bitwarden. **For complete details and examples:** See `references/critical-gotchas.md` -> **⛔ STOP — `@Suppress("MaxLineLength")`**: Do NOT add this annotation unless the `fun` declaration line **actually exceeds 100 characters**. Count the characters first. Do not copy it from nearby tests. Detekt will tell you if it's needed — when in doubt, leave it off. - **Core Patterns:** - **assertCoroutineThrows + runTest** - Never wrap in `runTest`; call directly - **Static mock cleanup** - Always `unmockkStatic()` in `@After`