1
0

.ansible-lint 408 B

12345678
  1. # .ansible-lint
  2. skip_list:
  3. - '208'
  4. - command-instead-of-module # Using command rather than module.
  5. - command-instead-of-shell # Use shell only when shell functionality is required.
  6. - no-changed-when # Commands should not change things if nothing needs doing.
  7. - risky-shell-pipe # Shells that use pipes should set the pipefail option.
  8. - literal-compare # Don't compare to literal True/False.