---
# Collection wide lint-file
# DO NOT CHANGE
exclude_paths:
  - .cache/
  - .github/
  #- docs/
  - roles/sap_hypervisor_node_preconfigure
  #- roles/sap_vm_provision
  - roles/sap_vm_preconfigure

enable_list:
  - yaml

skip_list:
  # We don't want to enforce new Ansible versions for Galaxy:
  - meta-runtime[unsupported-version]
  # We do not want to use checks which are marked as experimental:
  - experimental
  # We use ignore_errors for all the assert tasks, which should be acceptable:
  - ignore-errors
  # We want to allow single digit version numbers in a role's meta/main.yml file:
  - schema
  # Allow templating inside name because it creates more detailed output:
  - name[template]
  - yaml[comments]
  - yaml[line-length]
  - no-changed-when
  - no-tabs
  - no-handler
  - jinja[spacing]
  - var-naming[no-jinja]
