forked from y-scope/clp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.yamllint.yml
51 lines (38 loc) · 898 Bytes
/
.yamllint.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
extends: "default"
yaml-files:
- ".clang-format"
- ".yamllint"
- "*.yaml"
- "*.yml"
rules:
anchors:
forbid-duplicated-anchors: true
forbid-unused-anchors: true
braces:
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
brackets:
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
comments:
# Disabled so that snippets can be uncommented easily
require-starting-space: false
document-end:
present: false
document-start:
present: false
float-values:
require-numeral-before-decimal: true
indentation:
spaces: 2
line-length:
max: 100
allow-non-breakable-words: false
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: false
quoted-strings:
quote-type: "double"
truthy:
# Disabled for keys since GitHub actions uses the truthy-looking key "on"
check-keys: false