diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2016-02-22 13:32:33 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-27 20:40:35 +0900 |
commit | 442aa61b6e3037de03862285f7124796ddb0e8fb (patch) | |
tree | 3ebff6792cf8bf36d86a4f01ecd0ee5579dde4e8 /.pylintrc | |
parent | 4d8c6d3a7c30a7aafc61a604e16716c4ab57f72f (diff) |
.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>
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |