-
Notifications
You must be signed in to change notification settings - Fork 3
/
.yamllint
36 lines (35 loc) · 834 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
34
35
36
# SPDX-License-Identifier: ISC
#
# Copyright (c) 2024 Johnathan C. Maudlin <[email protected]>
---
rules:
braces: { max-spaces-inside: 1 }
brackets: enable
colons: enable
commas: enable
comments: { level: warning }
comments-indentation: { level: warning }
document-end: disable
document-start: { level: warning }
empty-lines: enable
empty-values: disable
hyphens: enable
indentation: enable
key-duplicates: enable
key-ordering: disable
line-length:
allow-non-breakable-inline-mappings: true
allow-non-breakable-words: true
max: 100
new-line-at-end-of-file: enable
new-lines: enable
octal-values: disable
quoted-strings: disable
trailing-spaces: enable
truthy:
allowed-values: ["true", "false"]
check-keys: false
yaml-files:
- "*.yml"
- ".ansible-lint"
- ".yamllint"