Skip to content

Commit

Permalink
lint: add ansible-lint configuration with skip_list and settings for …
Browse files Browse the repository at this point in the history
…better output
  • Loading branch information
neonmei committed Nov 12, 2020
1 parent a0f3278 commit 7bc8ea3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
---
use_default_rules: true
parseable: true
quiet: true
verbosity: 1

# State that naming for now should be a warning
# 106: ansible role name does not conform to pattern [a-z][a-z0-9_]+$
warn_list:
- '106'
- '303'

# This is for false positives
# 504: Do not use 'local_action', use 'delegate_to: localhost'
skip_list:
- '504'

0 comments on commit 7bc8ea3

Please sign in to comment.