# (c) Copyright 2019-2022 Hewlett Packard Enterprise Development LP

extends: default

rules:
  # 120 chars is a better standard than the 80 character limit.
  line-length:
    max: 120
  # We really don't care about new lines at the ends of yaml files.
  new-line-at-end-of-file: disable
  # Don't need to start the yaml files with ---
  document-start: disable
  # We are fine with having a space buffer between braces and their content.
  braces:
    max-spaces-inside: 1
  indentation:
    spaces: consistent
    indent-sequences: consistent
    check-multi-line-strings: false
