Add synced linter configs to fix Spellcheck on v0.59#1945
Merged
Conversation
Co-authored-by: radius-files-sync[bot] <248604391+radius-files-sync[bot]@users.noreply.github.com> (cherry picked from commit 4d50ee7) Signed-off-by: Brooke Hamilton <[email protected]>
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
willtsai
approved these changes
Jul 1, 2026
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.
Description
The
Spellcheckworkflow onv0.59fails on every PR (e.g. #1926) with a CSpell configuration error, not spelling errors:Root cause
v0.59was synced with the reusableradius-project/.githubspellcheck workflow (__spellcheck.yml), which runscspellagainst.github/linters/.cspell.yml. The workflow and root.cspellignorecame across, but the companion.github/linters/.cspell.ymlconfig file was never added — so cspell has no config to read and errors out.Fix
Cherry-pick of edge commit
4d50ee7e("chore(sync): synced file(s) with radius-project/.github (#1935)"), which adds the shared linter configs under.github/linters/, including.cspell.yml. This restores parity withedge, where spellcheck already passes. The change is purely additive (.github/linters/did not exist onv0.59).Validation
Ran the exact CI command locally on this branch:
Notes
.markdownlint*,.prettierrc.yml,.shellcheckrc,.yamllint.yml) are dormant onv0.59(no workflow references them yet) and are included to keep parity withedgefor the next file sync.v0.59; the same change passes onedge. This PR fixesv0.59for all PRs regardless.Co-authored-by: Copilot App [email protected]