.pylintrc: Remove deprecated output format feature

The 'parseable' output format of pylint is deprecated.
This patch updates the option from 'output-format=parseable' into
equivalent output format by using 'msg-template'.

Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
IWASE Yusuke 2016-02-22 13:32:33 +09:00 committed by FUJITA Tomonori
parent 4d8c6d3a7c
commit 442aa61b6e

View File

@ -10,6 +10,6 @@
# W0614: Unused import %s from wildcard import
# R0801: Similar lines in %s files
disable=C0111,W0511,W0142,E0602,C0103,E1101,R0903,W0614,R0801
output-format=parseable
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
reports=yes
files-output=no