From: Daniele Varrazzo Date: Sun, 6 Feb 2022 00:24:17 +0000 (+0100) Subject: Configure codespell to run on a dirty working directory X-Git-Tag: pool-3.1.1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40e1ac3278ebe7953b6d59bde64084149a2efe97;p=thirdparty%2Fpsycopg.git Configure codespell to run on a dirty working directory --- diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 000000000..33ec5a63d --- /dev/null +++ b/.codespellrc @@ -0,0 +1,3 @@ +[codespell] +ignore-words-list = alot,ans,ba,fo,te +skip = docs/_build,.tox,.mypy_cache,.venv,pq.c diff --git a/tox.ini b/tox.ini index 50bda0c8f..dfa1ab83d 100644 --- a/tox.ini +++ b/tox.ini @@ -28,7 +28,7 @@ deps = ./psycopg_pool [testenv:codespell] -commands = codespell -L "alot,ans,ba,fo,te" docs psycopg* tests +commands = codespell docs psycopg* tests deps = codespell