Skip to content
Snippets Groups Projects
ansible-lint-prod.conf 951 B
Newer Older
---

profile: production  # min, basic, moderate, safety, shared, production

exclude_paths:
  - ../playbooks/bench-monitoring.yml
  - .cache/
  - ${HOME}/.cache/

skip_list:
  - meta-no-info              # Skip warnings for missing galaxy_info in roles
  - role-name                 # Skip role name pattern verification ("-" should not be used)
  - package-latest            # Skip warning when package installation state is set to latest
  - experimental              # Skip all rules tagged as experimental, as schema validation
  - name[play]                # Skip the rule dictating that all play should have a name
  - name[casing]              # Skip the rule dictating that all task name should begin with uppercase
  - template-instead-of-copy  # Skip forcing the use of templates
  - name[template]            # Skip forcing to use jinja var at the end of a task name
  - fqcn[action]              # Skip full FQCN for ansible actions

...