pylint: ignore wrong-import-position project-wide

While it's more accurate with isort now, we get a wrong-import-position
for everything in scripts/ where we have to do the sys.path magic first.
This commit is contained in:
Florian Bruhin 2016-07-11 13:00:37 +02:00
parent 63b8d225e8
commit 1d237b0569
2 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,8 @@ disable=no-self-use,
redefined-variable-type,
suppressed-message,
too-many-return-statements,
duplicate-code
duplicate-code,
wrong-import-position
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$

View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
# pylint: disable=unused-import,wrong-import-position,bad-mcs-method-argument
# pylint: disable=unused-import,bad-mcs-method-argument
"""Wrapper for Python 3.5's typing module.