diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2010-02-17 22:43:44 +0100 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2010-02-17 22:43:44 +0100 |
commit | f32f4851f604ff3e96d47f58a2044d3ca71a21b2 (patch) | |
tree | ce329a959e105fb930ba4f6a35c532528d73be6f | |
parent | pylint: Fix dangerous/mutable default value (diff) | |
download | overlord-f32f4851f604ff3e96d47f58a2044d3ca71a21b2.tar.gz overlord-f32f4851f604ff3e96d47f58a2044d3ca71a21b2.tar.bz2 overlord-f32f4851f604ff3e96d47f58a2044d3ca71a21b2.zip |
Add pylint config
-rw-r--r-- | layman/tests/pylintrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layman/tests/pylintrc b/layman/tests/pylintrc new file mode 100644 index 0000000..b05498a --- /dev/null +++ b/layman/tests/pylintrc @@ -0,0 +1,19 @@ +[MESSAGES CONTROL] + +# Disable all messages in the listed categories (IRCWEF). +disable-msg-cat=IRC + +# Disable the message(s) with the given id(s). +# :W0613: *Unused argument %r* +# :W0702: *No exception type(s) specified* +# :W0703: *Catch "Exception"* +disable-msg=W0613,W0702,W0703 + + +[REPORTS] + +# Include message's id in output +include-ids=yes + +# Tells whether to display a full report or only the messages +reports=no |