Disable PEP8 E402(E8402). Module level import not at top of file.

This commit is contained in:
Pedro Algarvio 2015-03-31 09:40:27 +01:00
Родитель cf9b1f6ed8
Коммит 38f95ec4bb
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -51,7 +51,8 @@ fileperms-ignore-paths=tests/runtests.py,tests/jenkins*.py,tests/saltsh.py,tests
disable=W0142,
C0330,
I0011,
I0012
I0012,
E8402
# E8121,
# E8122,
# E8123,
@ -65,6 +66,7 @@ disable=W0142,
#
# W0142 (star-args)
# E812* All PEP8 E12*
# E8402 module level import not at top of file
# E8501 PEP8 line too long
# C0330 (bad-continuation)
# I0011 (locally-disabling)

Просмотреть файл

@ -80,7 +80,8 @@ disable=R,
E8128,
E8129,
E8131,
E8265
E8265,
E8402
# Disabled:
# R* [refactoring suggestions & reports]
@ -117,6 +118,7 @@ disable=R,
# E812* All PEP8 E12*
# E8265 PEP8 E265 - block comment should start with "# "
# E8501 PEP8 line too long
# E8402 module level import not at top of file
[REPORTS]