From 50e0eee893cb94bea47e7b190259504c220cd059 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 4 Feb 2026 14:08:41 -0500 Subject: [PATCH 1/5] Add github action to codespell main on push and PRs --- .github/workflows/codespell.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/codespell.yml diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 000000000..dd0eb8e57 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,23 @@ +# Codespell configuration is within pyproject.toml +--- +name: Codespell + +on: + push: + branches: [main] + pull_request: + branches: [main] + +permissions: + contents: read + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Codespell + uses: codespell-project/actions-codespell@v2 From b51ef6f8860e5cdeab95cd7a993219db4711aeab Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 4 Feb 2026 14:08:41 -0500 Subject: [PATCH 2/5] Add rudimentary codespell config --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d578a08bf..87b185667 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,3 +81,10 @@ ignore = ["E501"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] + +[tool.codespell] +# Ref: https://github.com/codespell-project/codespell#using-a-config-file +skip = '.git*' +check-hidden = true +# ignore-regex = '' +# ignore-words-list = '' From 5082a7732a9462274f47a097131f3cda678e4c00 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 4 Feb 2026 14:08:41 -0500 Subject: [PATCH 3/5] [DATALAD RUNCMD] chore: run codespell throughout fixing few left typos automagically === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e54bb8fcc..b8088d4b0 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ ⚡️ **Lightning Fast**: Minimal footprint means faster startup, lower resource usage, and quicker iterations. -💎 **Easy-to-Use**: One-click to depoly and you're ready to go. +💎 **Easy-to-Use**: One-click to deploy and you're ready to go. ## 🏗️ Architecture @@ -48,7 +48,7 @@

-

+

From a25a24422dba66687d348b44b32e96e4933bca1d Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 4 Feb 2026 14:09:43 -0500 Subject: [PATCH 4/5] fix filename --- case/{scedule.gif => schedule.gif} | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename case/{scedule.gif => schedule.gif} (100%) diff --git a/case/scedule.gif b/case/schedule.gif similarity index 100% rename from case/scedule.gif rename to case/schedule.gif From 861072519a616cb34c7c6ad0c9a264e828377c5a Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Sun, 5 Apr 2026 19:59:49 +0000 Subject: [PATCH 5/5] chore: remove codespell CI workflow and config, keep typo fixes only Made-with: Cursor --- .github/workflows/codespell.yml | 23 ----------------------- pyproject.toml | 7 ------- 2 files changed, 30 deletions(-) delete mode 100644 .github/workflows/codespell.yml diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml deleted file mode 100644 index dd0eb8e57..000000000 --- a/.github/workflows/codespell.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Codespell configuration is within pyproject.toml ---- -name: Codespell - -on: - push: - branches: [main] - pull_request: - branches: [main] - -permissions: - contents: read - -jobs: - codespell: - name: Check for spelling errors - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Codespell - uses: codespell-project/actions-codespell@v2 diff --git a/pyproject.toml b/pyproject.toml index 018827a85..ae87c7beb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -130,13 +130,6 @@ ignore = ["E501"] asyncio_mode = "auto" testpaths = ["tests"] -[tool.codespell] -# Ref: https://github.com/codespell-project/codespell#using-a-config-file -skip = '.git*' -check-hidden = true -# ignore-regex = '' -# ignore-words-list = '' - [tool.coverage.run] source = ["nanobot"] omit = ["tests/*", "**/tests/*"]