diff --git a/.yamllint b/.yamllint index 06fd860..739c7c1 100644 --- a/.yamllint +++ b/.yamllint @@ -1,14 +1,21 @@ extends: default + ignore: | .travis/ .travis.yml meta/ rules: + + # Disable line-length and truthy values reporting + line-length: disable + truthy: disable + + # Max 1 space to separate the elements in brakets braces: max-spaces-inside: 1 - level: error + + # Max 1 space in empty brackets brackets: - max-spaces-inside: 1 - level: error - line-length: disable + min-spaces-inside-empty: 0 + max-spaces-inside-empty: 1