-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
.yamllint
49 lines (44 loc) · 1.06 KB
/
.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
41
42
43
44
45
46
47
48
49
# yaml-language-server: $schema=https://json.schemastore.org/yamllint.json
# ref: https://yamllint.readthedocs.io/en/stable/configuration.html
extends: 'default'
ignore: |
homer/**
matrix/**
huginn/**
registry/**
registery/**
results.json
peertube/config/custom-environment-variables.yaml
.git/
peertube/config/default.yaml
test_config.yml
# https://yamllint.readthedocs.io/en/stable/rules.html
rules:
document-start:
present: false
comments:
min-spaces-from-content: 1
line-length:
allow-non-breakable-inline-mappings: true
ignore:
- '.github/workflows/healthcheck.workflow.tmpl.yml'
- '.github/workflows/dockerpublish.yml'
truthy:
allowed-values:
- 'false'
- 'on'
- 'true'
indentation:
spaces: 2
empty-values: 'enable'
float-values:
forbid-inf: true
forbid-nan: true
forbid-scientific-notation: true
require-numeral-before-decimal: true
octal-values: 'enable'
quoted-strings:
quote-type: 'single'
required: true
allow-quoted-quotes: false
# vim: ft=yaml