From d6704c6adfcf599cdc841540ed394ac05eb03417 2018-05-27 19:21:43 From: Branko Majic Date: 2018-05-27 19:21:43 Subject: [PATCH] MAR-129: Added global yamllint configuration file. --- diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000000000000000000000000000000000000..4da732e93ddb4d79c6c23e2569358711c0332ce1 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,16 @@ +--- + +# Extended the default linter configuration. +extends: default + +rules: + # Increase line length limit. + line-length: + max: 160 + + # Single spaces within braces (better readability). + braces: + min-spaces-inside: 1 + max-spaces-inside: 1 + min-spaces-inside-empty: 0 + max-spaces-inside-empty: 0