Skip to content

Commit

Permalink
Change to an explicit command in pre-commit-config
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Lee committed Sep 2, 2024
1 parent 4233a90 commit 6eade18
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 11 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,19 @@ repos:
hooks:
- id: codespell
args: [
"-S",
"*.csv",
"-S",
"*.ipynb",
"-S",
"pyproject.toml",
"-S",
"docs/source/conf.py",
"--ignore-words-list",
"nD,CACE",
# Write changes in place
"-w",
]
additional_dependencies:
# Support pyproject.toml configuration
- tomli
- tomli
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,3 @@ badge-format = "svg"
extend-select = [
"I", # isort
]

[tool.codespell]
skip = "*.csv,*.ipynb"
ignore-words-list = "nD,CACE"

0 comments on commit 6eade18

Please sign in to comment.