From 869bce3e48285d6c007d094a93c88a6aa3099ccf Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sun, 7 Jun 2020 00:53:06 +0200 Subject: [PATCH] Add yamllint config Signed-off-by: Knut Ahlers --- .config/yamllint/config | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .config/yamllint/config diff --git a/.config/yamllint/config b/.config/yamllint/config new file mode 100644 index 0000000..34876f3 --- /dev/null +++ b/.config/yamllint/config @@ -0,0 +1,51 @@ +--- +# See documentation for configuration / rules here: +# https://yamllint.readthedocs.io/en/stable/configuration.html +# +# - Put this file in ~/.config/yamllint/config to apply the rules +# - Install yamllint using `pip install yamllint` +# - Execute the check using `yamllint []` + +extends: default + +rules: + braces: + level: warning + min-spaces-inside: 1 + max-spaces-inside: 1 + min-spaces-inside-empty: 0 + max-spaces-inside-empty: 1 + brackets: + level: warning + colons: + level: warning + commas: + level: warning + document-end: + level: warning + present: true + document-start: + level: warning + present: true + empty-lines: + level: warning + hyphens: + level: warning + indentation: + level: warning + spaces: 2 + indent-sequences: true + check-multi-line-strings: true + key-duplicates: + level: error + line-length: + level: warning + allow-non-breakable-inline-mappings: true + new-line-at-end-of-file: + level: warning + trailing-spaces: + level: warning + +... + +# vim: set ft=yaml: