-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.yamllint
40 lines (40 loc) · 879 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
40
# yaml-language-server: $schema=https://json.schemastore.org/yamllint.json
extends: default
yaml-files:
- "*.yaml"
- "*.yml"
- .yamllint
ignore: |
.venv/
secrets/
**/upstream.yaml
rules:
document-start: disable
indentation:
spaces: 2
indent-sequences: false
check-multi-line-strings: false
line-length: disable
truthy:
ignore: .github/workflows/
braces:
forbid: false
min-spaces-inside: 0
max-spaces-inside: 0
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
brackets:
forbid: false
min-spaces-inside: 0
max-spaces-inside: 0
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
octal-values: enable
comments: enable
comments-indentation: enable
empty-values: enable
float-values: enable
quoted-strings:
quote-type: double
required: only-when-needed
allow-quoted-quotes: true