~harlowja/cloud-init/fix-auto-bool

696.1.1 by harlowja
Helpful cleanups.
1
[General]
2
init-hook='import sys; sys.path.append("tests/")'
3
4
[MESSAGES CONTROL]
5
# See: http://pylint-messages.wikidot.com/all-codes
6
# W0142: *args and **kwargs are fine.
7
# W0511: TODOs in code comments are fine.
8
# W0702: No exception type(s) specified
9
# W0703: Catch "Exception"
10
# C0103: Invalid name
11
# C0111: Missing docstring
12
disable=W0142,W0511,W0702,W0703,C0103,C0111
13
14
[REPORTS]
15
reports=no
16
include-ids=yes
17
18
[FORMAT]
19
max-line-length=79