summaryrefslogtreecommitdiffhomepage
path: root/.pylintrc
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-06-27 17:21:46 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-06-27 20:57:07 +0900
commit4187f31ff44093c806bb18cbf4584361824b5386 (patch)
tree77c1adc17250c7b7b1621c3333aef0f90a1376db /.pylintrc
parent8dc9bf8ae855dcc38b177e016fcb3cc12708b5ad (diff)
test: improve the framework
run_test.sh: * run pylint on virtualenv to enforce version 0.25.0 for now. (because pylint 0.25.1 doesn't work due to a bug) * output pep8.log for Jenkins integration. pylint: * disable some noisy messages. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc9
1 files changed, 8 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 177512f8..f4e55be3 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -1,8 +1,15 @@
[Messages Control]
+# PyLint Messages http://pylint-messages.wikidot.com/all-messages
# C0111: Don't require docstrings on every method
# W0511: TODOs in code comments are fine.
# W0142: *args and **kwargs are fine.
-disable=C0111,W0511,W0142
+# E0602: Undefined variable %r
+# C0103: Invalid name "%s" (should match %s)
+# E1101: %s %r has no %r member
+# R0903: Too few public methods (%s/%s)
+# 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
reports=yes
files-output=no