1[MASTER] 2 3# Specify a configuration file. 4rcfile=.pylintrc 5 6[MESSAGES CONTROL] 7 8# Disable the message, report, category or checker with the given id(s). You 9# can either give multiple identifiers separated by comma (,) or put this 10# option multiple times (only on the command line, not in the configuration 11# file where it should appear only once).You can also use "--disable=all" to 12# disable everything first and then reenable specific checks. For example, if 13# you want to run only the similarities checker, you can use "--disable=all 14# --enable=similarities". If you want to run only the classes checker, but have 15# no Warning level messages displayed, use"--disable=all --enable=classes 16# --disable=W" 17disable=R, 18 I0011, 19 I0013, 20 E1101, 21 E1103, 22 C0102, 23 C0103, 24 C0111, 25 C0203, 26 C0204, 27 C0301, 28 C0302, 29 C0330, 30 W0110, 31 W0122, 32 W0142, 33 W0201, 34 W0212, 35 W0404, 36 W0511, 37 W0603, 38 W0612, 39 W0613, 40 W0621, 41 W0622, 42 W0631, 43 W0704, 44 F0220, 45 F0401, 46 E8501, 47 E8121, 48 E8122, 49 E8123, 50 E8124, 51 E8125, 52 E8126, 53 E8127, 54 E8128 55 56[REPORTS] 57 58# Tells whether to display a full report or only the messages 59reports=no 60 61# Set the output format. Available formats are text, parseable, colorized, msvs 62# (visual studio) and html 63# output-format=parseable 64msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}' 65 66# Put messages in a separate file for each module / package specified on the 67# command line instead of printing them on stdout. Reports (if any) will be 68# written in a file name "pylint_global.[txt|html]". 69files-output=no 70