From c99ef10cb05614a99c20c75a4fee41398f7cae45 Mon Sep 17 00:00:00 2001 From: Andrew Scribner Date: Fri, 31 May 2024 10:04:38 -0400 Subject: [PATCH] Add codespell dictionary settings to pyproject.toml --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7ab48a52..3cb09235 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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