-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add cspell configuration and CI spell-check #11
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
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
411d5a1
feat: add cspell configuration and CI spell-check
devin-ai-integration[bot] 7fc7649
fix: add jlpm install step to spell-check CI job
devin-ai-integration[bot] 9ac36f7
fix: revert incorrect build.yml changes - Base Setup doesn't provide …
devin-ai-integration[bot] 56e855d
fix: move spell check from build.yml to ci.yaml as separate CI workflow
devin-ai-integration[bot] d61f6b4
chore: merge main to update branch
devin-ai-integration[bot] 7939ed1
fix: add jlpm install step before spell-check in CI
devin-ai-integration[bot] ad6b89f
fix: use jlpm instead of jlpm install in CI spell-check job
devin-ai-integration[bot] c53c4d3
fix: install jupyterlab to provide jlpm command in spell-check CI
devin-ai-integration[bot] ad66d27
fix: use npx cspell instead of adding to devDependencies
devin-ai-integration[bot] da16028
fix: add JupyterLab technical terms to cspell dictionary
devin-ai-integration[bot] 7ef5209
Merge branch 'main' into devin/1760032126-add-cspell-config
jamesbhobbs 86dd994
chore: cr feedback
jamesbhobbs a26287f
fix: add --frozen-lockfile flag to jlpm install in CI
devin-ai-integration[bot] 4d98acd
fix: remove unnecessary dependencies install step from spell check
devin-ai-integration[bot] 6eaab48
Merge branch 'main' into devin/1760032126-add-cspell-config
jamesbhobbs 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
Some comments aren't visible on the classic Files Changed page.
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,31 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: main | ||
| pull_request: | ||
| branches: '*' | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| spell-check: | ||
| name: Spell Check | ||
| permissions: | ||
| contents: read | ||
| timeout-minutes: 10 | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
jamesbhobbs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - name: Base Setup | ||
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | ||
|
|
||
| - name: Install JupyterLab | ||
| run: python -m pip install -U "jupyterlab>=4.0.0,<5" | ||
|
|
||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - name: Run spell check | ||
| run: npx cspell@9.2.1 "**/*.{md,txt,json,js,ts,tsx,jsx,yml,yaml}" | ||
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,67 @@ | ||
| { | ||
| "version": "0.2", | ||
| "ignorePaths": [ | ||
| "node_modules", | ||
| "package-lock.json", | ||
| "yarn.lock", | ||
| "dist", | ||
| "lib", | ||
| "build", | ||
| "coverage", | ||
| ".vscode", | ||
| ".git", | ||
| "*.min.js", | ||
| "*.min.css", | ||
| "*.map", | ||
| "jupyterlab_deepnote/labextension" | ||
| ], | ||
| "language": "en", | ||
| "overrides": [ | ||
| { | ||
| "filename": "**/*.md", | ||
| "words": [ | ||
| "deepnote", | ||
| "jupyter", | ||
| "jupyterlab", | ||
| "ipynb", | ||
| "labextension", | ||
| "jlpm", | ||
| "pnpm", | ||
| "monorepo" | ||
| ] | ||
| } | ||
| ], | ||
| "words": [ | ||
| "apputils", | ||
| "bdist", | ||
| "chakra", | ||
| "codegen", | ||
| "coreutils", | ||
| "csstree", | ||
| "deepnote", | ||
| "ipynb", | ||
| "Jakubowski", | ||
| "jlpm", | ||
| "jpserver", | ||
| "jupyter", | ||
| "jupyterlab", | ||
| "labextension", | ||
| "labextensions", | ||
| "lintcache", | ||
| "lumino", | ||
| "monorepo", | ||
| "nbformat", | ||
| "pnpm", | ||
| "pyproject", | ||
| "Pytest", | ||
| "pytest", | ||
| "rseidelsohn", | ||
| "sdist", | ||
| "settingregistry", | ||
| "stylelintcache", | ||
| "testutils", | ||
| "venv", | ||
| "ydoc" | ||
| ], | ||
| "useGitignore": true | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.