From 7d17713723c1f78f9e28f00881646e56854710c1 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Tue, 18 Apr 2023 15:29:57 -0700 Subject: [PATCH] ci: Crank up the yamllint line length limit. I hated that CI errors out because I pasted useful information in the yaml. You shouldn't have to manually line-wrap pastes from dmesg. Part-of: --- .gitlab-ci/run-yamllint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/run-yamllint.sh b/.gitlab-ci/run-yamllint.sh index ea3616e69ad..282508305ab 100755 --- a/.gitlab-ci/run-yamllint.sh +++ b/.gitlab-ci/run-yamllint.sh @@ -2,4 +2,4 @@ set -e # Run yamllint against all traces files. -find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 150}}}" +find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 1000}}}"