]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: move codespell configuration to pyproject.toml 758/head
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 31 Mar 2024 22:13:20 +0000 (22:13 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 1 Apr 2024 22:41:47 +0000 (22:41 +0000)
Configuration updated to ignore false positives in the errors l10n regexp.

.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 0fbeb82bea61772a82c76aae2fcc27016fed8e44..41772b441e3033e6d945206f70a0347bcd7f295d 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,erro,varning"
+skip = "build,_build,.tox,.mypy_cache,.venv,pq.c,_psycopg.c"