---
# https://github.com/adrienverge/yamllint

extends: default

rules:
  comments-indentation: disable
  document-end: disable
  document-start:
    present: true
  indentation:
    spaces: 2
    indent-sequences: true
    check-multi-line-strings: true
  line-length:
    allow-non-breakable-words: true
    allow-non-breakable-inline-mappings: true
    max: 120
  quoted-strings:
    quote-type: any
    required: only-when-needed
    # extra-required: ["^http:", "^https:"]
    ignore: |
      .pre-commit-config.yaml
  truthy:
    allowed-values: ["false", "true"]
