2021-03-19 12:07:44 +01:00
|
|
|
---
|
2019-11-18 14:04:40 +00:00
|
|
|
use_default_rules: true
|
|
|
|
skip_list:
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E701] galaxy_info missing in metadata
|
2019-11-18 14:04:40 +00:00
|
|
|
- '701'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E602] https://github.com/ansible/ansible-lint/issues/457
|
2019-11-18 14:04:40 +00:00
|
|
|
- '602'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E301] Commands should not change things if nothing needs doing
|
|
|
|
# TODO(mnasiadka): Fix tasks that fail this check in a later iteration
|
2019-11-18 14:04:40 +00:00
|
|
|
- '301'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E503] Tasks that run when changed should likely be handlers
|
|
|
|
# TODO(mnasiadka): Rework baremetal role to do handlers instead of when: *.changed
|
2020-08-21 09:26:15 +02:00
|
|
|
- '503'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E106] Role name {} does not match ``^[a-z][a-z0-9_]+$`` pattern
|
2020-08-21 09:26:15 +02:00
|
|
|
- '106'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [E208] permissions not mentioned
|
|
|
|
# FIXME(mnasiadka): Rework file/template to include permissions
|
2020-08-21 09:26:15 +02:00
|
|
|
- '208'
|
2021-03-19 12:07:44 +01:00
|
|
|
# [unnamed-task] All tasks should be named
|
|
|
|
# FIXME(mgoddard): Add names to all tasks
|
2021-03-11 09:10:16 +00:00
|
|
|
- unnamed-task
|
2022-02-14 16:15:49 +01:00
|
|
|
# disable experimental rules
|
|
|
|
- experimental
|
|
|
|
# Package installs should not use latest
|
|
|
|
- package-latest
|
|
|
|
# Most files should not contain tabs
|
|
|
|
- no-tabs
|
2022-04-07 13:19:41 +02:00
|
|
|
# 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
|