You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.2 KiB

  1. ---
  2. parseable: true
  3. skip_list:
  4. # see https://docs.ansible.com/ansible-lint/rules/default_rules.html for a list of all default rules
  5. # DO NOT add any other rules to this skip_list, instead use local `# noqa` with a comment explaining WHY it is necessary
  6. # These rules are intentionally skipped:
  7. #
  8. # [E204]: "Lines should be no longer than 160 chars"
  9. # This could be re-enabled with a major rewrite in the future.
  10. # For now, there's not enough value gain from strictly limiting line length.
  11. # (Disabled in May 2019)
  12. - '204'
  13. # [E701]: "meta/main.yml should contain relevant info"
  14. # Roles in Kubespray are not intended to be used/imported by Ansible Galaxy.
  15. # While it can be useful to have these metadata available, they are also available in the existing documentation.
  16. # (Disabled in May 2019)
  17. - '701'
  18. # [role-name] "meta/main.yml" Role name role-name does not match ``^+$`` pattern
  19. # Meta roles in Kubespray don't need proper names
  20. # (Disabled in June 2021)
  21. - 'role-name'
  22. # [var-naming] "defaults/main.yml" File defines variable 'apiVersion' that violates variable naming standards
  23. # In Kubespray we use variables that use camelCase to match their k8s counterparts
  24. # (Disabled in June 2021)
  25. - 'var-naming'