vim/.config/yamllint/config

21 lines
332 B
Plaintext
Raw Normal View History

2022-11-11 04:39:16 +00:00
---
# 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: