From 630a0cf6f99ca326e1cddda8c7b4cf6606e60591 Mon Sep 17 00:00:00 2001 From: Janusz Janus Date: Tue, 24 Sep 2024 19:27:00 +0200 Subject: [PATCH] chore(ci): cspell improve error readability (#313) --- earthly/cspell/Earthfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/earthly/cspell/Earthfile b/earthly/cspell/Earthfile index 48f5ae32c..794a28275 100644 --- a/earthly/cspell/Earthfile +++ b/earthly/cspell/Earthfile @@ -16,13 +16,13 @@ CHECK: WORKDIR /work COPY $src . - - RUN cspell-cli lint . --dot + + RUN cspell-cli --quiet lint . --dot # CLEAN: Cleanup the project dictionary. CLEAN: FUNCTION - + COPY .config/dictionaries/project.dic project.dic RUN sort -u -d -f project.dic > new.dic IF ! diff -q project.dic new.dic