forked from UI-Lovelace-Minimalist/UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.yamllint
39 lines (38 loc) · 782 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
37
38
39
---
yaml-files:
- "*.yaml"
- "*.yml"
- ".yamllint"
rules:
line-length:
max: 256
level: "warning"
braces: "enable"
brackets: "enable"
colons: "enable"
commas: "enable"
comments:
level: "warning"
comments-indentation:
level: "warning"
document-end: "disable"
document-start:
present: true
empty-lines: "enable"
empty-values: "disable"
hyphens: "enable"
indentation:
spaces: 2
indent-sequences: true
check-multi-line-strings: false
key-duplicates: "enable"
key-ordering: "disable"
new-line-at-end-of-file: "enable"
new-lines: "enable"
octal-values: "disable"
quoted-strings:
quote-type: "double"
required: true
trailing-spaces: "enable"
truthy:
allowed-values: ["true", "false", "on", "off"]