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:
parent
63b8d225e8
commit
1d237b0569
@ -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}$
|
||||
|
@ -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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user