From: Daniele Varrazzo Date: Sun, 31 Mar 2024 22:13:20 +0000 (+0000) Subject: chore: move codespell configuration to pyproject.toml X-Git-Tag: 3.1.19~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F758%2Fhead;p=thirdparty%2Fpsycopg.git chore: move codespell configuration to pyproject.toml Configuration updated to ignore false positives in the errors l10n regexp. --- 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"