29 lines
561 B
Plaintext
29 lines
561 B
Plaintext
# Ansible-lint configuration
|
|
# https://ansible-lint.readthedocs.io/en/latest/configuring.html
|
|
|
|
# Exclude paths from linting
|
|
exclude_paths:
|
|
- .cache/
|
|
- .github/
|
|
- docker/
|
|
- tests/
|
|
- '*.md'
|
|
|
|
# Enable specific rules
|
|
enable_list:
|
|
- yaml
|
|
- no-changed-when
|
|
- no-tabs
|
|
|
|
# Skip specific rules
|
|
skip_list:
|
|
- role-name # We don't use role naming conventions
|
|
- galaxy # We don't publish to Galaxy
|
|
- meta-no-info # No meta/main.yml files
|
|
|
|
# Offline mode (don't check for newer ansible-lint versions)
|
|
offline: false
|
|
|
|
# Verbosity level
|
|
verbosity: 1
|