Skip to content

Commit 03b2d6e

Browse files
committed
fix codespell
1 parent 87529db commit 03b2d6e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/nocache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Rebuild Entire Jupyter Book
1+
name: Rebuild Entire Jupyter Book on all Platforms
22

33
on:
44
workflow_dispatch:

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ repos:
1313
- id: check-yaml
1414
- id: double-quote-string-fixer
1515

16+
- repo: https://github.com/codespell-project/codespell
17+
rev: "v2.3.0"
18+
hooks:
19+
- id: codespell
20+
1621
- repo: https://github.com/psf/black
1722
rev: 25.1.0
1823
hooks:

.prettierignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ Follow the link reported in a terminal to open a pull request!
8585

8686
[`pixi`](https://pixi.sh) can be used to create and update a multi-platform lockfile, so a reproducible set of package versions is installed across different operating systems.
8787

88-
Dependencies (with optional pins) are specfied in the `pyproject.toml` file, and specific locked versions for all platforms are kept in `pixi.lock`.
88+
Dependencies (with optional pins) are specified in the `pyproject.toml` file, and specific locked versions for all platforms are kept in `pixi.lock`.
8989

9090
Install environment from the lockfile
9191

9292
```
9393
pixi install
94-
pixi shell # activate environment, "exit" to deativate
94+
pixi shell # activate environment, "exit" to deactivate
9595
```
9696

9797
Upgrade all packages to latest versions:

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ combine_as_imports=true
4242
line_length=100
4343
#skip=
4444

45+
[tool.codespell]
46+
ignore-words-list="nd"
47+
skip="pixi.lock,.pixi,qaqc.yaml"
48+
4549
[tool.pixi.project]
4650
name = "xarray-tutorial"
4751
channels = ["conda-forge"]

0 commit comments

Comments
 (0)