feat(typos): add typos spell-check module - #4
Merged
Conversation
Adds a referenceable typos module mirroring the markdown/powershell slices: a decoupled base _typos.toml (universal ignores only — inline disable directives, braced GUID/UUID literals, minified-bundle exclude; no domain words), good/bad fixtures, a shell-harness test, and a SHA-pinned CI lane. The crate-ci/typos action runs over the full tree and cannot pass --exclude, so CI installs the binary via taiki-e/install-action and runs typos directly with --exclude 'fixtures/*/bad/'. This keeps the published config adopter-clean, matching the editorconfig/markdown invocation-level exclusion decision. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
The adopt-in-a-repo example lists deliberate near-misspellings (ASO, seeked) to show what extend-words is for; those tokens tripped the repo's own typos self-lint. Wrap the fenced example in the module's own spellchecker:off/on block directive — the module dogfooding its blessed escape hatch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jun 22, 2026
kyle-sexton
added a commit
that referenced
this pull request
Jun 24, 2026
…tch-item (#36) claude-code-plugins onboarded to the CI platform (consumer PR #4; org ci-gate armed via github-iac PR #17). Update the rollout adoption table, per-repo note, and sequence (next: medley), and tick the Phase 6 checkbox in plan.md. Also reconcile architecture D6: the visibility watch-item is resolved by making ci-workflows public (a public consumer can only `uses:` public repos), so the "keep everything private" implication no longer holds for public providers. The constraints for any provider kept private are retained. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 tasks
kyle-sexton
pushed a commit
that referenced
this pull request
Jul 22, 2026
…policy (#243) Bumps [fast-uri](https://github.com/fastify/fast-uri) from 3.1.3 to 3.1.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fastify/fast-uri/releases">fast-uri's releases</a>.</em></p> <blockquote> <h2>v3.1.4</h2> <h2>⚠️ Security Release</h2> <p>Fix for <a href="https://github.com/fastify/fast-uri/security/advisories/GHSA-v2hh-gcrm-f6hx">https://github.com/fastify/fast-uri/security/advisories/GHSA-v2hh-gcrm-f6hx</a></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/fastify/fast-uri/compare/v3.1.3...v3.1.4">https://github.com/fastify/fast-uri/compare/v3.1.3...v3.1.4</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fastify/fast-uri/commit/6aeece669e4166b2446a89f17c07a3b15dfb7ed4"><code>6aeece6</code></a> Bumped v3.1.4</li> <li><a href="https://github.com/fastify/fast-uri/commit/2d50fbabc80e4d0884fe0f6a98fe118ce6faa353"><code>2d50fba</code></a> fix: reject literal backslash in URI authority</li> <li>See full diff in <a href="https://github.com/fastify/fast-uri/compare/v3.1.3...v3.1.4">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/melodic-software/standards/network/alerts). </details> ## Related - Resolves [Dependabot alert #4](https://github.com/melodic-software/standards/security/dependabot/4) (fast-uri host confusion, GHSA-v2hh-gcrm-f6hx) in `components/runner-policy`. - Downstream: managed materialization `.github/standards/runner-policy/package-lock.json` in melodic-software/claude-code-plugins carries the same alert; resolved via distribution sync after this merges. No linked issue. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a referenceable typos spell-check module, a vertical slice mirroring the markdown/powershell/editorconfig modules.
Contents
modules/typos/_typos.toml— decoupled base config: universal ignores only (inlinespellchecker:disable directives, braced GUID/UUID literals,*.min.*exclude). Ships no domain words; adopters extend.modules/typos/typos.test.sh— shell-harness test (good → exit 0, bad → exit 2, asserts a correction is reported).modules/typos/README.md— engine, the blessed inline-directive convention, adopt-in-a-repo guidance.fixtures/typos/{good,bad}— clean prose (incl. a workingdisable-linedirective) vs. real misspellings..github/workflows/typos.yml— SHA-pinned CI: install binary viataiki-e/install-action, self-lint the tree, run fixtures.CI design note
The
crate-ci/typosaction runs over the full tree and exposes no--excludeinput, so the intentionally-misspelled bad fixtures would fail a self-lint. CI instead installs the binary and runstypos --config … --exclude 'fixtures/*/bad/' .directly — keeping the published config adopter-clean, consistent with the editorconfig/markdown invocation-level exclusion decision.Validation (local, all green)
good fixture exit 0 · bad fixture exit 2 · self-dogfood exit 0 · full shell harness 5/5 ·
shellcheck -x+actionlintclean · markdown + editorconfig self-lint clean.