tripleo-quickstart/.ansible-lint
Sorin Sbarnea 6b8fca9a2e Bump linters and remove dead code
- builds linters to current versions
- adds two missing roles used internally to mock list
- adds few missing modules to mock list
- nukes usbkey quickstart feature because it was fully broken and
  prevented newer linter from running on it. The current code
  attempted to run a tasks file as a playbooks, something that will
  never work.

Change-Id: I38b6f2fa9e831534eaca090ad51f531a742ec999
2021-07-13 16:04:08 +03:00

28 lines
856 B
Plaintext

---
parseable: true
exclude_paths:
- config/
- releasenotes/
# this file tries to execute a file that is part of tripleo-quickstart-extras
# so it will never pass.
- playbooks/build-images-and-quickstart.yml
skip_list:
# One two excuses for adding skips: bugs in linter and recent linter bumping
- '204' # [E204] Lines should be no longer than 120 chars
# E602 https://github.com/ansible/ansible-lint/issues/450
- '602' # [E602] Don't compare to empty string
- '701' # [E701] No 'galaxy_info' found
- '208' # [E208] File permissions unset or incorrect
- '106' # [E106] Role name {} does not match ^[a-z][a-z0-9_]+$ pattern
- '303' # [E303] Using command rather than module
mock_roles:
- extras-common
- image-build
mock_modules:
- authorized_key
- modprobe
- openvswitch_bridge
- virt
- virt_net
- virt_pool