diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2012-01-19 19:11:44 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-01-24 11:54:59 +0900 |
commit | 741ac692b04ad09197282e7d5e38df62f7ca298e (patch) | |
tree | 1c011bfb30ede228d7dd337cfd8b8479d9c2c57e /pylintrc | |
parent | d05fbf280700b34c5c56038f78608c3254837bea (diff) |
pylint: add a script to run pylint and pylintrc
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc new file mode 100644 index 00000000..fb718e95 --- /dev/null +++ b/pylintrc @@ -0,0 +1,5 @@ +[Messages Control] +# 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 |