Enable most of the disabled pylint messages

This commit is contained in:
Stein Magnus Jodal 2010-05-01 14:12:27 +02:00
parent 343e451b55
commit c3912dd14e

View File

@ -1,2 +1,22 @@
[MESSAGES CONTROL]
disable-msg=C0102,C0103,C0111,C0112,C0121,C0202,C0203,C0302,E0011,E0012,E0100,E0101,E0102,E0202,E0221,E0222,E0702,E0710,E1101,F0001,F0002,F0003,F0004,F0202,F0220,F0321,F0401,I0001,I0010,I0011,I0012,I0013,R0201,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,R0923,W0141,W0142,W0231,W0232,W0233,W0401,W0403,W0404,W0406,W0410,W0511,W0601,W0603,W0613
#
# Disabled messages
# -----------------
#
# C0103 - Invalid name "%s" (should match %s)
# C0111 - Missing docstring
# C0112 - Empty docstring
# E0102 - %s already defined line %s
# E0202 - An attribute inherited from %s hide this method
# E1101 - %s %r has no %r member
# R0201 - Method could be a function
# R0801 - Similar lines in %s files
# R0903 - Too few public methods (%s/%s)
# R0904 - Too many public methods (%s/%s)
# W0141 - Used builtin function %r
# W0142 - Used * or ** magic
# W0401 - Wildcard import %s
# W0511 - TODO, FIXME and XXX in the code
# W0613 - Unused argument %r
#
disable-msg = C0103,C0111,C0112,E0102,E0202,E1101,R0201,R0801,R0903,R0904,W0141,W0142,W0401,W0511,W0613