387de84520
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
23 lines
775 B
Plaintext
23 lines
775 B
Plaintext
---
|
|
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]
|