From 18f4f3782f5bf9e1c9ccd3a6780d3743a2eaf7f8 Mon Sep 17 00:00:00 2001 From: georg Date: Mon, 16 Jul 2018 07:51:48 +0000 Subject: CI: codespell: Exclude vendor dir, which leads to false positives Closes #38 --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3