Skip to content

Commit

Permalink
Add codespell dictionary settings to pyproject.toml (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-scribner authored May 31, 2024
1 parent d593e4d commit 5134590
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ show_missing = true
line-length = 99
target-version = ["py38"]

[tool.codespell]
skip = ".git,.tox,build,lib,venv*,.mypy_cache"
ignore-words-list = "assertIn"

# Linting tools configuration
[tool.ruff]
line-length = 99
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ description = Check code against coding style standards
deps =
black
ruff
codespell<2.3.0 # https://github.com/codespell-project/codespell/issues/3430
codespell
commands =
codespell . --skip .git --skip .tox --skip build --skip lib --skip venv --skip .mypy_cache --skip *.svg
ruff {[vars]all_path}
Expand Down

0 comments on commit 5134590

Please sign in to comment.