mirror of
https://github.com/logseq/logseq.git
synced 2026-05-26 05:34:07 +00:00
CI's spell-check (crate-ci/typos) flagged two patterns introduced by this PR: - `daa` inside hex color values (`e6daa6` beige, `daa520` goldenrod) in colors/named.cljs and colors/css.cljs. Pure tokenizer artifact; the hex codes are W3C canonical and can't be renamed. - `unparseable` in 3 docstrings + 1 comment of colors.cljs. Both spellings are valid English; typos prefers `unparsable`. Fix surgically rather than growing the global word allowlist: add the two color-data files to `extend-exclude` (they're pure lookup tables with no prose to spell-check anyway), and rename `unparseable` in colors.cljs to `unparsable`. No code semantics changed. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>