---
extends: default

rules:
  line-length: disable
  truthy:
    allowed-values: ['true', 'false', 'yes', 'no']
  comments:
    min-spaces-from-content: 1
  comments-indentation: disable
  braces:
    max-spaces-inside: 1
  octal-values:
    forbid-implicit-octal: true
    forbid-explicit-octal: false
  indentation:
    # Tolerate the pre-existing mixed indentation in roles inherited from the
    # source repo; a follow-up issue tracks normalizing these.
    spaces: 2
    indent-sequences: whatever
    check-multi-line-strings: false

ignore: |
  build/
  collections/
  tests/output/
