Commit c04b7197 authored by Michal Čihař's avatar Michal Čihař

Ignore wildcard import in pylint

This is used massively in tests/__init__.py and there is no better way.
parent 8ad9012d
......@@ -27,7 +27,8 @@ cache-size=500
# E1103 does not work with WSGIRequest or file objects
# R0924 Badly implemented Container, implements __getitem__ but not __delitem__, __len__, __setitem__
# W0703 Catching too general exception Exception
disable=C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,E1101,E1120,E1103,W0703
# W0401 Wildcard import (used massively in tests/__init__.py)
disable=C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,E1101,E1120,E1103,W0703,W0401
# R0924
[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