faad14e614
Change-Id: I820d287ab97dca027f2f523fc514100d8c6d6d18
20 lines
750 B
Plaintext
20 lines
750 B
Plaintext
---
|
|
use_default_rules: true
|
|
skip_list:
|
|
# [E503] Tasks that run when changed should likely be handlers
|
|
# TODO(mnasiadka): Rework roles to do handlers instead of when: *.changed
|
|
- no-handler
|
|
# [E208] permissions not mentioned
|
|
# FIXME(mnasiadka): Rework file/template to include permissions
|
|
- risky-file-permissions
|
|
# [unnamed-task] All tasks should be named
|
|
# FIXME(mgoddard): Add names to all tasks
|
|
- unnamed-task
|
|
# [ignore-errors] Use failed_when and specify error conditions instead of using ignore_errors
|
|
# FIXME(mgoddard): Use failed_when instead of ignore_errors
|
|
- ignore-errors
|
|
# Package installs should not use latest
|
|
- package-latest
|
|
# Commands should not change things if nothing needs doing
|
|
- no-changed-when
|