Added yamllint config

This commit is contained in:
David Thurstenson 2022-11-10 22:39:16 -06:00
parent f49ef9db41
commit e3dd796a80
1 changed files with 20 additions and 0 deletions

20
.config/yamllint/config Normal file
View File

@ -0,0 +1,20 @@
---
# Thurstylark's yamllint config
# Only change the specified rules
extends: default
rules:
# Don't complain about a single space within brackets {}
braces:
max-spaces-inside: 1
# Don't complain about line length
line-length: disable
# Don't complain about truthy values
truthy: disable
# vim: set ft=yaml: