---
# .ansible-lint

# Specify exclude paths to prevent linting vendor roles, etc.
exclude_paths:
  - ./.git/
  - ./.venv/
  - ./galaxy_roles/

# A list of rules to skip. This is a more modern and readable alternative to 'skip_list'.
skip_list:
  - experimental
  - fqcn-builtins
  - no-handler
  - var-naming
  - no-changed-when
  - risky-shell-pipe

# Enforce certain rules that are not enabled by default.
enable_list:
  - no-free-form
  - var-spacing
  - no-log-password
  - no-relative-path
  - command-instead-of-module
  - fqcn[deep]
  - no-changed-when

# Offline mode disables any features that require internet access.
offline: false

# Set the desired verbosity level.
verbosity: 1
