Skip to content
Snippets Groups Projects
.ansible-lint 644 B
Newer Older
  • Learn to ignore specific revisions
  • exclude_paths:
      - misc
    
      # FIXME: parser-error: couldn't resolve module/action 'hosts'. This often indicates a misspelling, missing collection, or incorrect module path.
      - playbooks/tasks
    
      - roles/prometheus/files/node.rules.yml
    
      # line too long (x > 80 characters) (line-length)
      - 'line-length'
    
      # yaml: too many spaces inside braces (braces)
      - 'braces'
    
    Frederik Schwan's avatar
    Frederik Schwan committed
      # Do not recommend running tasks as handlers
    
      # Do not force galaxy info in meta/main.yml
    
      # Allow package versions to be specified as 'latest'
    
      # Don't require FQCN for builtin actions
      - 'fqcn-builtins'