summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2024-03-25 20:25:45 +0100
committerMarge Bot <emma+marge@anholt.net>2024-03-25 21:49:05 +0000
commitb24c834d967a9d8793edc60552cd9112f49d09fb (patch)
tree6d8b362afcaa17189312d3c7d2d3532c606d8eee
parent0a842edd07f42fe60a4046bb7211ac5879a451d4 (diff)
ci: codespell ignore list is lowercase
The somewhat twisted language in [1] seems to mean that words in the ignore list must be passed as lowercase. Discussion in [2] supports this understanding. Change all matches to lowercase and remove uppercase entries that are already matched by lowercase ones. [1] https://github.com/codespell-project/codespell/#ignoring-words [2] https://github.com/codespell-project/codespell/issues/2375 Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/894>
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 105988528..58672fa68 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -89,7 +89,7 @@ linting:
extends:
- .use-debian
script:
- - codespell -f -S ".mypy_cache,drm_fourcc.h" -L "lod,LOD,inout,nd,ND,valu,VALU,tese,ba,te,nin,marge,Stach"
+ - codespell -f -S ".mypy_cache,drm_fourcc.h" -L "lod,inout,nd,valu,tese,ba,te,nin,marge,stach"
- export CHECKPATH=framework/replay # restrict Python checks only on framework/replay for now
- isort --check-only $CHECKPATH
- flake8 --max-line-length=120 --show-source $CHECKPATH