diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-05 06:11:21 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-13 04:26:56 +0100 |
commit | f62867dde669c79680229412b2ac46ad5e65a979 (patch) | |
tree | c4af271ab00d5c49771d5f215e0fa7afe89967fe | |
parent | 4b73ca638ec8194e96b7d8199022f519b3499109 (diff) | |
download | pleroma-f62867dde669c79680229412b2ac46ad5e65a979.tar.gz |
.gitlab-ci.yml: Use --strict instead of list
This makes the output to be more compact while not loosing readability
--format=flycheck // --format=json could also be used but they are
not very human readable
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d7f92c9e..d5f2a762a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,4 +42,4 @@ unit-testing: analysis: stage: analysis script: - - mix credo list --only=warnings,todo,fixme,consistency,readability + - mix credo --strict --only=warnings,todo,fixme,consistency,readability |