summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-19 23:48:30 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-19 23:48:30 +0300
commit1e9760e7191162d4da7278f851b6d1b385e7d76d (patch)
tree7af85a04bf320130e93af2020fe7c30033448997 /pylintrc
parent3fc6f0048df6f0c6900896d88bbf8dc7f5b06836 (diff)
downloadastroid-git-1e9760e7191162d4da7278f851b6d1b385e7d76d.tar.gz
Update the list of disabled messages.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 1f1ae56a..ee8333f8 100644
--- a/pylintrc
+++ b/pylintrc
@@ -96,7 +96,9 @@ disable=invalid-name,protected-access,no-self-use,unused-argument,
too-many-public-methods,too-many-instance-attributes,
super-init-not-called,redefined-builtin,cyclic-import,
too-many-return-statements,redefined-outer-name,undefined-variable,
- too-many-locals,method-hidden,duplicate-code,attribute-defined-outside-init
+ too-many-locals,method-hidden,duplicate-code,attribute-defined-outside-init,
+ fixme,missing-docstring,too-many-lines,too-many-statements,undefined-loop-variable,
+ unpacking-non-sequence
[BASIC]