ci: fix yamllint error in generated golangci.yml file

When running 'make containerized-test' the following error gets
reported:

    yamllint -s -d '{extends: default, rules: {line-length: {allow-non-breakable-inline-mappings: true}},ignore: charts/*/templates/*.yaml}' ./scripts/golangci.yml
    ./scripts/golangci.yml
      179:81    error    line too long (84 > 80 characters)  (line-length)

The golangci.yml.in is used to generate golangci.yml, addressing the
line-length there resolves the issue.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2021-07-23 17:27:31 +02:00 committed by mergify[bot]
parent e75d308b9c
commit 4e6d9be826

View File

@ -176,5 +176,6 @@ linters:
- gomoddirectives
# TODO: enable gci
- gci
# TODO: enable wrapcheck linter, see: https://github.com/ceph/ceph-csi/pull/2268
# TODO: enable wrapcheck linter
# See: https://github.com/ceph/ceph-csi/pull/2268
- wrapcheck