mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 15:15:26 +01:00
ansible lint
This commit is contained in:
parent
9ce933f7d0
commit
571e80cdba
2 changed files with 16 additions and 2 deletions
|
|
@ -3,9 +3,23 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
# SPDX-FileCopyrightText: 2024, Ansible Project
|
||||
|
||||
# Use a more permissive profile due to documentation parsing issues
|
||||
profile: min
|
||||
|
||||
skip_list:
|
||||
- meta-runtime[unsupported-version] # Tis rule doesn't make any sense
|
||||
- meta-runtime[unsupported-version] # This rule doesn't make any sense
|
||||
- fqcn[deep] # This rule produces false positives for files in tests/unit/plugins/action/fixtures/
|
||||
- no-relative-paths # Temporary skip due to documentation parsing issue
|
||||
- parser-error # Skip documentation parsing errors
|
||||
- syntax-check # Skip syntax check issues in documentation
|
||||
- load-failure # Skip module loading failures during documentation parsing
|
||||
- args # Skip argument validation errors in documentation
|
||||
|
||||
exclude_paths:
|
||||
- changelogs/
|
||||
|
||||
# Enable specific rules we want to keep
|
||||
enable_list:
|
||||
- yaml
|
||||
- name
|
||||
- var-naming
|
||||
|
|
|
|||
Loading…
Reference in a new issue