From 651ad7f628c91f4358cde923931a190c0d724948 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sun, 31 Mar 2024 22:13:20 +0000 Subject: [PATCH] chore: move codespell configuration to pyproject.toml Configuration updated to ignore false positives in the errors l10n regexp. --- .codespellrc | 3 --- pyproject.toml | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) delete mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc deleted file mode 100644 index 33ec5a63d..000000000 --- a/.codespellrc +++ /dev/null @@ -1,3 +0,0 @@ -[codespell] -ignore-words-list = alot,ans,ba,fo,te -skip = docs/_build,.tox,.mypy_cache,.venv,pq.c diff --git a/pyproject.toml b/pyproject.toml index 0fbeb82be..41772b441 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,3 +53,7 @@ module = "tests.*" check_untyped_defs = true disallow_untyped_defs = false disallow_untyped_calls = false + +[tool.codespell] +ignore-words-list = "alot,ans,ba,fo,te,erro,varning" +skip = "build,_build,.tox,.mypy_cache,.venv,pq.c,_psycopg.c" -- 2.47.2