Suppress a false positive
Silence a finding on one line or across a whole file with straitjacket-allow markers.
When a finding is a legitimate exception — a palette file that's supposed to be full of hex codes, a generated file that's supposed to be huge — you tell Straitjacket to leave it alone with a marker comment.
There are two scopes. Both just look for the marker text, so the comment syntax
(//, #, /* */, <!-- -->) doesn't matter — use whatever's valid in the
file.
One line
Add a same-line comment:
const brandColor = "#ff6600"; // straitjacket-allow: fixed brand color, not themeablestraitjacket-allowsuppresses every rule on that line.straitjacket-allow:<rule>suppresses only that rule, e.g.straitjacket-allow:color.
Anything after the marker is free-form — use it to note why.
A whole file
Put the marker on any one line of the file (the top is conventional). This is the right tool for a theme or palette file full of legitimate hexes:
/* straitjacket-allow-file:color design tokens — colors live here */
:root { --bg: #1e1e1e; --fg: #abb2bf; }straitjacket-allow-fileexempts every rule for the file.straitjacket-allow-file:<rule>exempts only that rule for the file — so the palette above still gets checked for emoji, oversized length, and everything else.
Which scope for which rule
Some rules are inherently whole-file (they don't attach to a single line):
file-sizeis a whole-file rule, so a per-linestraitjacket-allowwon't silence it — you needstraitjacket-allow-file:file-size. See Exclude big or generated files.slop-proseflags a dense span, not one line. Suppress the whole document withstraitjacket-allow-file:slop-prose(right for a file that legitimately quotes AI-slop examples), or a single line withstraitjacket-allow.
Prefer the rule-scoped form (straitjacket-allow-file:color) over the
blanket one whenever you can — it keeps every other rule live on that file,
which is almost always what you want.
For the exact matching semantics, see the suppression-markers reference.