extends: default

rules:
  line-length:
    max: 120
    level: warning
  indentation:
    spaces: 2
    indent-sequences: true
  comments:
    min-spaces-from-content: 1
  comments-indentation: disable
  document-start: disable
  truthy:
    allowed-values: ["true", "false", "on", "off"]
  empty-lines:
    max: 1
    max-start: 0
    max-end: 1

# Ignore entire Helm Chart directory (contains Go template syntax and Helm Chart has its own format requirements)
ignore: |
  helm/**
