From 33d122bb54211ffffd07cda91b817ce477f75156 Mon Sep 17 00:00:00 2001 From: harryryu Date: Wed, 3 Jul 2024 10:37:13 -0700 Subject: [PATCH] Ignore crate during tox spellcheck --- ignore-words.txt | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 ignore-words.txt diff --git a/ignore-words.txt b/ignore-words.txt new file mode 100644 index 000000000..9ac17d57f --- /dev/null +++ b/ignore-words.txt @@ -0,0 +1 @@ +crate diff --git a/tox.ini b/tox.ini index 7cd36fbbf..eadd01903 100644 --- a/tox.ini +++ b/tox.ini @@ -46,7 +46,7 @@ deps = codespell commands = - codespell + codespell --ignore-words=ignore-words.txt . [testenv:lint] basepython: python3