summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorgeorg <georg@riseup.net>2018-07-18 20:54:29 +0000
committergeorg <georg@riseup.net>2018-07-18 20:55:16 +0000
commitf496a577dd0cc7d8b79cea68ad0ac6b8d925c562 (patch)
tree425dd876a1d4e915ab1ea013fbb62f0a4f753aea /.gitlab-ci.yml
parentb3a453ebcfdaa091070017f7a6c5d6398d518662 (diff)
CI: codespell: Add config to ignore specific strings and words
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 71d2bff..0d31d9f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -34,10 +34,10 @@ codespell:
APT_INSTALL_PACKAGES: codespell
<<: *setup_apt
script:
- # Run codespell to check for spelling errors, using a config to ignore
- # warnings about binary files and to check file names as well.
+ # Run codespell to check for spelling errors, using a config with ignored words,
+ # ignoring warnings about binary files and to check file names as well.
# Also, exclude the vendor dir, which leads to false positives.
- - codespell -q 2 -f -S vendor
+ - codespell -q 2 -f -I utils/ci/codespell/ignored_words.txt -S vendor
stage: static
build: