Skip to content

Commit 6a445f3

Browse files
author
Alex Lee
committed
Change to an explicit command in pre-commit-config
1 parent 4233a90 commit 6a445f3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.pre-commit-config.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,17 @@ repos:
4646
hooks:
4747
- id: codespell
4848
args: [
49+
"-S",
50+
"*.csv",
51+
"-S",
52+
"*.ipynb",
53+
"-S",
54+
"pyproject.toml",
55+
"--ignore-words-list",
56+
"\"nD,CACE\"",
4957
# Write changes in place
5058
"-w",
5159
]
5260
additional_dependencies:
5361
# Support pyproject.toml configuration
54-
- tomli
62+
- tomli

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,3 @@ badge-format = "svg"
122122
extend-select = [
123123
"I", # isort
124124
]
125-
126-
[tool.codespell]
127-
skip = "*.csv,*.ipynb"
128-
ignore-words-list = "nD,CACE"

0 commit comments

Comments
 (0)