4
files=( bin/cloud-init $(find * -name "*.py" -type f) )
16
IGNORE="E501" # Line too long (these are caught by pylint)
18
# King Arthur: Be quiet! ... Be Quiet! I Order You to Be Quiet.
19
IGNORE="$IGNORE,E121" # Continuation line indentation is not a multiple of four
20
IGNORE="$IGNORE,E123" # Closing bracket does not match indentation of opening bracket's line
21
IGNORE="$IGNORE,E124" # Closing bracket missing visual indentation
22
IGNORE="$IGNORE,E125" # Continuation line does not distinguish itself from next logical line
23
IGNORE="$IGNORE,E126" # Continuation line over-indented for hanging indent
24
IGNORE="$IGNORE,E127" # Continuation line over-indented for visual indent
25
IGNORE="$IGNORE,E128" # Continuation line under-indented for visual indent
26
IGNORE="$IGNORE,E502" # The backslash is redundant between brackets
36
echo -e "\nRunning 'cloudinit' pep8:"