# ansible-lint config for the oriolrius.pki_manager collection.
#
# yaml[line-length] is a warning, not a failure: the only long lines are cron
# command bodies inside `content: |` literal blocks, which cron requires on one
# physical line and which cannot carry an inline `# noqa` (it would become part
# of the installed cron file).
#
# args[module] is EXPERIMENTAL and cannot resolve arguments supplied via
# `module_defaults` (a first-class Ansible pattern the SSH example uses), so it
# false-positives "missing required arguments: api_url". Keep it as a warning.
warn_list:
  - yaml[line-length]
  - args[module]
