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.

27 lines
950 B

  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. # The following rules throw errors.
  6. # These either still need to be corrected in the repository and the rules re-enabled or documented why they are skipped on purpose.
  7. - '301'
  8. - '302'
  9. - '303'
  10. - '305'
  11. - '306'
  12. - '404'
  13. - '503'
  14. # These rules are intentionally skipped:
  15. #
  16. # [E204]: "Lines should be no longer than 160 chars"
  17. # This could be re-enabled with a major rewrite in the future.
  18. # For now, there's not enough value gain from strictly limiting line length.
  19. # (Disabled in May 2019)
  20. - '204'
  21. # [E701]: "meta/main.yml should contain relevant info"
  22. # Roles in Kubespray are not intended to be used/imported by Ansible Galaxy.
  23. # While it can be useful to have these metadata available, they are also available in the existing documentation.
  24. # (Disabled in May 2019)
  25. - '701'