forked from HariSekhon/DevOps-Python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.yamllint
33 lines (26 loc) · 791 Bytes
/
.yamllint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-02-26 14:42:07 +0000 (Tue, 26 Feb 2019)
#
# https://github.com/harisekhon/devops-python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
---
extends: default
rules:
# error too many spaces after colon
colons: disable
# warning missing starting space in comment
comments: disable
# warning comment not indented like content
comments-indentation: disable
# warning missing document start "---"
document-start: disable
# error line too long (94 > 80 characters)
line-length: disable