-
Notifications
You must be signed in to change notification settings - Fork 0
[All] CSpell の導入 #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+290
−0
Merged
[All] CSpell の導入 #21
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
43ba211
chore: add cspell configuration with jsonc format
blendthink 4e31be6
chore: add cspell and software terms dictionary
blendthink 3ee8f84
chore: add dart, flutter and sql dictionaries for cspell
blendthink 2d8631f
chore: configure cspell to use dart, flutter and sql dictionaries
blendthink e7e97c4
chore: add trailing commas to cspell configuration
blendthink 6ac63ff
chore: add configuration files to cspell ignore paths
blendthink 3166b17
chore: add code-spell-checker to recommended extensions
blendthink 0f9a13c
chore: add CODEOWNERS to cspell words
blendthink 594932c
ci: add spell check workflow with tool-versions support
blendthink a44bef3
chore: add bunx and marocchino to cspell words
blendthink File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Check Spell | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
check-spell: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- name: Read .tool-versions | ||
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0 | ||
id: versions | ||
- name: Setup bun | ||
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2.0.1 | ||
with: | ||
bun-version: ${{ steps.versions.outputs.bun }} | ||
- name: Install dependencies | ||
run: bun install --frozen-lockfile | ||
- name: Run spell check | ||
run: bunx cspell . |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"streetsidesoftware.code-spell-checker", | ||
], | ||
} |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここは mise のアクション使うと 1 アクションで実現できます 🙋
https://github.com/jdx/mise-action
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tatsutakein
これ考えたのですが、余計なもののインストールが走っちゃう気がしてやめました、、!🙏
何か絞る方法があれば教えていただけると助かります🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あ、なるほど!そこを懸念されていたのですね 🙇
何を気にしているのか次第なところではありますが…!
インストールの時間を気にされているようであれば jdx/mise-action はキャッシュしてくれるのでわりとスムーズにインストールできるかなと思ってます。
単純に使用しないものまでインストールが走ってしまうことを気にされているようであれば現状のままで良い気がします 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
悩ましいところですが、ひとまずは今のままでいかせてください🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
おけまるです!
決めの問題だと思うので、問題ないように思います 🙆