forked from ChilliCream/graphql-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs spellcheck and fix all spelling errors (ChilliCream#5461)
- Loading branch information
1 parent
20ac50a
commit 6869a40
Showing
113 changed files
with
446 additions
and
365 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,35 @@ | ||
name: Documentation Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
# linting: | ||
# name: "Markdown linting" | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# name: Check out the code | ||
# - name: "Docs: Markdown Linting" | ||
# uses: docker://ghcr.io/igorshubovych/markdownlint-cli:latest | ||
# with: | ||
# args: 'markdownlint "./website/src/**/*.md" --disable MD013' | ||
spellcheck: | ||
name: "Docs: Spellcheck" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Check out the code | ||
- uses: actions/setup-node@v1 | ||
name: Setup node | ||
with: | ||
node-version: "16" | ||
- run: npm install -g cspell | ||
name: Install cSpell | ||
- run: cspell --config ./cSpell.json "website/src/**/*.md" --no-progress | ||
name: run cSpell |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"Blazor", | ||
"BSON", | ||
"Cakepop", | ||
"chillicream", | ||
"Contoso", | ||
"customizability", | ||
"dataloaders", | ||
"discoverability", | ||
"entityframework", | ||
"evolvability", | ||
"fastify", | ||
"fetchable", | ||
"FIPS", | ||
"Hasura", | ||
"hotchocolate", | ||
"jetbrains", | ||
"JWTs", | ||
"Linq", | ||
"microservices", | ||
"middlewares", | ||
"NodaTime", | ||
"OWIN", | ||
"pageable", | ||
"protobuf", | ||
"roadmap", | ||
"runbooks", | ||
"struct", | ||
"Swashbuckle", | ||
"traversion", | ||
"Websockets" | ||
], | ||
"ignoreWords": [ | ||
"Specwise", | ||
"strawberryshake", | ||
"refactorings", | ||
"mercurius", | ||
"Giroux", | ||
"graphyne", | ||
"greendonut", | ||
"Andi", | ||
"aspnetcore", | ||
"bananacakepop", | ||
"Marek", | ||
"Kellner", | ||
"Kydne", | ||
"GraphiQL", | ||
"Tengler", | ||
"Staib", | ||
"shoooe", | ||
"Senn", | ||
"Snapshooter", | ||
"relayjs", | ||
"Rgba", | ||
"Postgraphile", | ||
"Normen", | ||
], | ||
"ignoreRegExpList": [ | ||
"\\((.*)\\)", // Markdown links | ||
"```[a-z]*\n[\\s\\S]*?\n```", // Markdown code blocks. h/t https://coderwall.com/p/r6b4xg/regex-to-match-github-s-markdown-code-blocks, | ||
"\\`([^\\`].*?)\\`", // inline code blocks. h/t https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex | ||
"\\<a(.*)\\>", // link contents | ||
"-- snippet:(.*)", // snippet references | ||
"\\<\\[sample:(.*)", // another kind of snippet reference | ||
"/^\\s*```[\\s\\S]*?^\\s*```/gm" // ignoring multi-line code blocks | ||
] | ||
} |
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.