18 lines
401 B
YAML
18 lines
401 B
YAML
---
|
|
# Ansible Lint Configuration
|
|
# Run with: ansible-lint -c tests/linting/ansible-lint.yml
|
|
|
|
skip_list:
|
|
- yaml[line-length] # Allow longer lines in templates
|
|
- no-changed-when # Some API calls are difficult to make idempotent
|
|
- risky-file-permissions # Handled by role defaults
|
|
|
|
warn_list:
|
|
- experimental
|
|
- jinja[spacing]
|
|
|
|
exclude_paths:
|
|
- .git/
|
|
- .github/
|
|
- tests/sample_config/
|