From: Daniele Varrazzo Date: Fri, 13 Oct 2023 23:52:05 +0000 (+0200) Subject: chore: move codespell configuration to toml file X-Git-Tag: pool-3.2.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95b6e8595bf6484034a6a63fbad1e3c12f8fb5b2;p=thirdparty%2Fpsycopg.git chore: move codespell configuration to toml file Configuration tweaked to avoid files commonly found in dev environments. --- 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 7a507bc43..7735c18b5 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' +skip = '_build,.mypy_cache,.venv,pq.c,_psycopg.c,*.html'