]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: move codespell configuration to toml file
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 13 Oct 2023 23:52:05 +0000 (01:52 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 13 Oct 2023 23:52:05 +0000 (01:52 +0200)
Configuration tweaked to avoid files commonly found in dev environments.

.codespellrc [deleted file]
pyproject.toml

diff --git a/.codespellrc b/.codespellrc
deleted file mode 100644 (file)
index 33ec5a6..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-[codespell]
-ignore-words-list = alot,ans,ba,fo,te
-skip = docs/_build,.tox,.mypy_cache,.venv,pq.c
index 7a507bc43f376e013120e63cdc1104fa831e9424..7735c18b54497a9dd3c217c53d0f71a1152037f9 100644 (file)
@@ -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'