forked from yandex/gixy
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.yamllint.yml
More file actions
21 lines (17 loc) · 730 Bytes
/
Copy path.yamllint.yml
File metadata and controls
21 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# yamllint config for the project.
# Line-length is disabled to match the markdown convention.
extends: default
rules:
# GitHub Actions YAML conventionally omits `---`.
document-start: disable
# `on:` in GitHub Actions workflows is a key, not a boolean; yamllint
# default treats it as truthy. Skip the truthy check on keys.
truthy:
check-keys: false
# Disabled by project choice; long lines in mkdocs.yml `repo_url`,
# `site_description`, plugin args, etc. read more naturally on one line.
line-length: disable
# Both 4-space (mkdocs style) and 6-space sequence indentation are valid
# YAML; accept whichever the file uses, as long as it is consistent.
indentation:
indent-sequences: consistent