Changeset - d6704c6adfcf
[Not reviewed]
0 0 1
Branko Majic (branko) - 6 years ago 2018-05-27 19:21:43
branko@majic.rs
MAR-129: Added global yamllint configuration file.
1 file changed with 16 insertions and 0 deletions:
0 comments (0 inline, 0 general)
.yamllint.yml
Show inline comments
 
new file 100644
 
---
 

	
 
# 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
0 comments (0 inline, 0 general)