-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #423 from holochain/2024-02-05-add-spell-checking-ci
add cspell GH workflow for spell checking
- Loading branch information
Showing
16 changed files
with
144 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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,24 @@ | ||
agent-centricity | ||
Anwaar | ||
buildinputs | ||
builtins | ||
Burmeister | ||
Cachix | ||
CRDT | ||
d'Aoust | ||
fixt | ||
gnused | ||
IPFS | ||
NixOS | ||
nixpkgs | ||
pkgs | ||
QUIC | ||
rustc | ||
rustflags | ||
rustup | ||
subl | ||
Tauri | ||
Ulhaq | ||
Wahlstrom | ||
WebRTC | ||
workdir |
This file contains 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,16 @@ | ||
DeepKey | ||
dnas | ||
DPKI | ||
hApp | ||
Holo | ||
Holo's | ||
Holochain | ||
Holochain's | ||
Holonix | ||
sharded | ||
Tryorama | ||
webhapp | ||
zome | ||
zome's | ||
zomes | ||
zomes' |
This file contains 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,18 @@ | ||
brower | ||
coreconcepts | ||
elif | ||
endfor | ||
endlayoutblock | ||
endlink | ||
endmacro | ||
endrenderlayoutblock | ||
gtag | ||
layoutblock | ||
MSIE | ||
newblock | ||
pagefind | ||
rocketship | ||
renderlayoutblock | ||
srcset | ||
storysequence | ||
surpress |
This file contains 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,21 @@ | ||
affordance | ||
affordances | ||
automations | ||
birthdate | ||
counterparties | ||
counterparties' | ||
counterparty | ||
counterparty's | ||
filesystem | ||
filesystems | ||
interoperating | ||
permissioned | ||
permissivity | ||
runtimes | ||
sandboxed | ||
spacebar | ||
todo | ||
todos | ||
unforgeable | ||
uninstallation | ||
unvalidated |
This file contains 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,19 @@ | ||
name: 'Check spelling' | ||
on: # rebuild any PRs and main branch changes | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
spellcheck: # run the action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Get dictionaries' | ||
run: | | ||
npm install @cspell/dict-lorem-ipsum | ||
npm install @cspell/dict-rust | ||
- uses: streetsidesoftware/cspell-action@v5 | ||
with: | ||
root: 'src' | ||
files: '**/*.{json5,njk,md}' | ||
incremental_files_only: false |
This file contains 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 @@ | ||
{ | ||
"import": ["@cspell/dict-lorem-ipsum/cspell-ext.json", "@cspell/dict-rust/cspell-ext.json"], | ||
"dictionaries": ["holochain", "words-that-should-exist", "custom", "template", "html", "css", "softwareTerms", "lorem-ipsum", "rust"], | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "holochain", | ||
"path": "./.cspell/holochain-words.txt" | ||
}, | ||
{ | ||
"name": "words-that-should-exist", | ||
"path": "./.cspell/words-that-should-exist.txt" | ||
}, | ||
{ | ||
"name": "custom", | ||
"path": "./.cspell/custom-words.txt" | ||
}, | ||
{ | ||
"name": "template", | ||
"path": "./.cspell/template-words.txt" | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.