Commit 27c2feff authored by Michal Čihař's avatar Michal Čihař

Remove pylint warning disabling

These no longer happens in current code base.
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent e4ab75d8
......@@ -40,14 +40,12 @@ load-plugins=pylint_django
# W0142 Used * or * magic* Used when a function or method is called using *args or **kwargs to dispatch arguments.
# W0613 Unused argument %r Used when a function or method argument is not used.
# R0201 Method could be a function
# E1101 does not work well on metaclasses like Django models or Mechanize browser
# E1103 does not work with WSGIRequest or file objects
# W0703 Catching too general exception Exception
# R0921,R0922 Is raised when abstract classes are used in different module
# E1002 Produces lot of false positives with Django 1.5
# R0401(cyclic-import) we have too many of them
# W0122(exec-used) exec is used in openshift
disable=C0111,I0011,W0142,W0613,W0703,R0201,E1103,E1101,R0401,R0921,R0922,E1002,W0122
disable=C0111,I0011,W0142,W0613,W0703,R0201,E1103,R0401,R0921,R0922,W0122
[REPORTS]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment