From 17aa583294a2988a40e9e29e7f2f05f0ab3f1769 Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Thu, 5 Oct 2023 23:16:12 +0200 Subject: [PATCH] chore: configure codespell With this configuration, codespell does not show false positives at the moment I used this configuration to fix typos, see PR https://github.com/enasequence/read_docs/pull/159 --- .codespell_ignore_words.txt | 5 +++++ setup.cfg | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .codespell_ignore_words.txt create mode 100644 setup.cfg diff --git a/.codespell_ignore_words.txt b/.codespell_ignore_words.txt new file mode 100644 index 00000000..b839983c --- /dev/null +++ b/.codespell_ignore_words.txt @@ -0,0 +1,5 @@ +claus +alpha-numeric +wya +otu +structed diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..857de3a7 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[codespell] +ignore-words = .codespell_ignore_words.txt