mirror of
1
Fork 0

Run yamllint with strict mode, fix issue (#33551)

Previously yamllint would issue warnings for certain things, while still
exiting with zero. Now warnings are treated like errors and will cause
non-zero exit:

```
  -s, --strict          return non-zero exit code on warnings as well as errors
```

(cherry picked from commit b3302748fa2bed0265e4008a19f74d803fd2e244)
This commit is contained in:
silverwind 2025-02-10 23:33:40 +01:00 committed by Gusted
parent 344351b712
commit dccd443e04
No known key found for this signature in database
GPG Key ID: FD821B732837125F
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ lint-templates: .venv node_modules
.PHONY: lint-yaml .PHONY: lint-yaml
lint-yaml: .venv lint-yaml: .venv
@poetry run yamllint . @poetry run yamllint -s .
.PHONY: security-check .PHONY: security-check
security-check: security-check: