32 lines
652 B
Plaintext
32 lines
652 B
Plaintext
---
|
|
# .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
|
|
|
|
# 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
|