From b3551f50a87fe6ec6d33928832750a5b08ffb49e Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Fri, 14 Oct 2022 11:24:32 +0000 Subject: [PATCH] Provide `codespell` configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While at it, add a list with words to ignore. This suppresses the following codespell finding: $ codespell libcpumf/libcpumf_cpuset.c libcpumf/libcpumf_cpuset.c:15: parm ==> param, pram, parma libcpumf/libcpumf_cpuset.c:17: parm ==> param, pram, parma Signed-off-by: Marc Hartmayer Reviewed-by: Jan Höppner Reviewed-by: Steffen Eiden Signed-off-by: Jan Höppner --- .codespellrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 00000000..388a7c2d --- /dev/null +++ b/.codespellrc @@ -0,0 +1,5 @@ +[codespell] +ignore-words-list = parm,parms +skip = '' +count = '' +quiet-level = 3