---
extends: default

rules:
  line-length:
    max: 160
    level: warning
  truthy:
    allowed-values: ["true", "false", "yes", "no"]
    check-keys: false
  comments:
    min-spaces-from-content: 1
  comments-indentation: false
  braces:
    max-spaces-inside: 1
  octal-values:
    forbid-implicit-octal: true
  indentation:
    spaces: 2
    indent-sequences: true

ignore: |
  .github/
  .nox/
  .tox/
  changelogs/
  tests/output/
