# .ansible-lint
exclude_paths:
  - .cache/
  - .github/
  - molecule/
  - .ansible-lint
  - .yamllint
  - meta/
  - playbooks/roles/

rulesdir:
   - ../../ansible-lint-custom-rules/rules/

enable_list:
  - fqcn-builtins  # opt-in
  - no-log-password  # opt-in

warn_list:
  - role_vars_start_with_role_name
  - vars_in_vars_files_have_valid_names
  - experimental
  - ignore-errors
  - no-handler
  - fqcn-builtins
  - no-log-password
  - no-empty-data-files
  - name[template]
  - fqcn[keyword]
  - command-instead-of-module
  - key-order[task]
  - schema[changelog]
  - name[missing]
  - name[play]
  - name[template]
  - name[casing]
  - no-changed-when
  - task_has_valid_name
  - blocked_modules
  - schema[meta]
  - risky-file-permissions
  - var-naming[no-role-prefix]

skip_list:
  - vars_should_not_be_used
  - file_is_small_enough
  - jinja[spacing]

use_default_rules: true
parseable: true
