-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ansible-lint
29 lines (26 loc) · 1.14 KB
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
# just because of "MUh bEst PRaCTicEs"
skip_list:
#
# ansible.builtin.tempfile is fucking useless. don't even bring it up.
# all it does is fucking wrap mktemp and add FUCKING NOTHING OF VALUE.
#
# it won't even clean up the temp file after the playbook run is done.
# see: https://github.com/ansible/ansible/issues/25145
#
# there is literally nothing of value with it. it's just one more thing
# that could randomly break underneath you because some fuckwit of a
# glorified-webdesigner-turned-devderps-engineer decided that the current
# methodology isn't "fashionable" anymore and needs to arbitrarily change.
#
#- 'command-instead-of-module'
# note for above: ignoring the warning at the site is preferable due to other warnings that may occur
#
# One-off handlers result in worse code in the end, quite frankly.
#
# Separating pieces and making the flow of execution harder to follow is a significant antipattern.
# If they were reused heavily, sure, great, do that. But if it's only being used once,
# it's just another action. Seriously, it seems that the concept of "nuance" is lost on
# the maintainers ansible-lint.
#
- 'no-handler'