-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
19 lines (17 loc) · 622 Bytes
/
pyproject.toml
File metadata and controls
19 lines (17 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[project]
name = "diffedit3-tools"
version = "0.1.0"
requires-python = ">=3.9"
[dependency-groups]
dev = [
"codespell[toml]>=2.4.0",
]
[tool.codespell]
check-filenames=true
check-hidden=true
# Codespell does not respect .gitignore. It is possible to add to the skip
# list by running e.g. `uv run codespell --skip=./.flox` if you have less
# common ignored files or globally ignored files present. Alternatively,
# try `uv run codespell $(jj file list | grep -v '^webapp/dist')`.
skip="target,node_modules,./.jj,*.lock,package-lock.json,./.git,./.venv,./webapp/dist,./backend-tauri/gen"
# ignore-words-list="crate"