Skip to content
Snippets Groups Projects
Select Git revision
  • f2b8a3614d57df09b88d5e2cc2e12b55be7d85ea
  • master default protected
  • v2.28.0
  • v2.27.0
  • v2.25.1
  • v2.24.3
  • v2.26.0
  • v2.24.2
  • v2.25.0
  • v2.24.1
  • v2.22.2
  • v2.23.3
  • v2.24.0
  • v2.23.2
  • v2.23.1
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.0
  • v2.19.1
  • v2.18.2
22 results

.ansible-lint

Blame
  • .ansible-lint 930 B
    ---
    parseable: true
    skip_list:
      # see https://docs.ansible.com/ansible-lint/rules/default_rules.html for a list of all default rules
      # The following rules throw errors.
      # These either still need to be corrected in the repository and the rules re-enabled or documented why they are skipped on purpose.
      - '301'
      - '305'
      - '306'
      - '404'
      - '503'
    
      # These rules are intentionally skipped:
      #
      # [E204]: "Lines should be no longer than 160 chars"
      # This could be re-enabled with a major rewrite in the future.
      # For now, there's not enough value gain from strictly limiting line length.
      # (Disabled in May 2019)
      - '204'
    
      # [E701]: "meta/main.yml should contain relevant info"
      # Roles in Kubespray are not intended to be used/imported by Ansible Galaxy.
      # While it can be useful to have these metadata available, they are also available in the existing documentation.
      # (Disabled in May 2019)
      - '701'