2
init-hook='import sys; sys.path.append("tests/")'
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"
11
# C0111: Missing docstring
12
disable=W0142,W0511,W0702,W0703,C0103,C0111