summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeorg <georg@riseup.net>2018-07-16 07:51:48 +0000
committergeorg <georg@riseup.net>2018-07-16 07:51:48 +0000
commit18f4f3782f5bf9e1c9ccd3a6780d3743a2eaf7f8 (patch)
treecddb0c406e1ae9dc0dc4ece1b58af0b2dd780ecc
parentb326d06a24d9e55441dc4e2b02e7096e36443b42 (diff)
CI: codespell: Exclude vendor dir, which leads to false positives
Closes #38
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4704231..71d2bff 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,7 +36,8 @@ codespell:
script:
# Run codespell to check for spelling errors, using a config to ignore
# warnings about binary files and to check file names as well.
- - codespell -q 2 -f
+ # Also, exclude the vendor dir, which leads to false positives.
+ - codespell -q 2 -f -S vendor
stage: static
build: