Skip to content
Snippets Groups Projects
  • Marcin Juszkiewicz's avatar
    387de845
    ansible-lint: cleanup our skip list · 387de845
    Marcin Juszkiewicz authored
    removed:
    - 701 [galaxy_info missing] is no longer emited
    - 602 [empty string compare] is now opt-in
    - 208 [permissions not mentioned] is no longer emited
    - 106 [role name] is no longer emited
    
    renamed from number to role name:
    - 503 [no-handler]
    - 301 [no-changed-when]
    
    Change-Id: I8b059d87c94499decbd9b115ef2cde033aa88fbd
    387de845
    History
    ansible-lint: cleanup our skip list
    Marcin Juszkiewicz authored
    removed:
    - 701 [galaxy_info missing] is no longer emited
    - 602 [empty string compare] is now opt-in
    - 208 [permissions not mentioned] is no longer emited
    - 106 [role name] is no longer emited
    
    renamed from number to role name:
    - 503 [no-handler]
    - 301 [no-changed-when]
    
    Change-Id: I8b059d87c94499decbd9b115ef2cde033aa88fbd
.ansible-lint 775 B
---
use_default_rules: true
skip_list:
  # [E301] Commands should not change things if nothing needs doing
  # TODO(mnasiadka): Fix tasks that fail this check in a later iteration
  - no-changed-when
  # [E503] Tasks that run when changed should likely be handlers
  - no-handler
  # [unnamed-task] All tasks should be named
  # FIXME(mgoddard): Add names to all tasks
  - unnamed-task
  # disable experimental rules
  - experimental
  # Package installs should not use latest
  - package-latest
  # Most files should not contain tabs
  - no-tabs
  # NOTE(frickler): Agreed at Zed PTG not to use FQCN for builtin actions for now, due to
  # conflicts with open patches and backports.
  - fqcn-builtins
  # Allow Jinja templating inside task and play names
  - name[template]