We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d1839 commit 1219c1dCopy full SHA for 1219c1d
.pre-commit-config.yaml
@@ -199,7 +199,7 @@ repos:
199
- id: yamllint
200
name: ✅ YAMLlint - YAML Linter
201
description: A linter for YAML files.
202
- args: [-d, relaxed]
+ args: [ -c, .yamllint ]
203
204
# - repo: https://github.com/igorshubovych/markdownlint-cli
205
# rev: v0.45.0
.yamllint
@@ -0,0 +1,5 @@
1
+extends: relaxed # start from the built-in relaxed preset
2
+rules:
3
+ line-length:
4
+ max: 200 # allow lines up to 200 chars
5
+ level: warning # keep it a warning (default); use "error" to fail
0 commit comments