lint: Ignore pylint import order for now
This commit is contained in:
parent
21d9c9a585
commit
f9eb4fb04d
|
|
@ -58,6 +58,8 @@ disable=locally-disabled,
|
|||
missing-type-doc,
|
||||
missing-param-doc,
|
||||
useless-param-doc,
|
||||
wrong-import-order, # FIXME:qt6
|
||||
ungrouped-imports, # FIXME:qt6
|
||||
|
||||
[BASIC]
|
||||
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ except ImportError:
|
|||
sys.exit(100)
|
||||
check_python_version()
|
||||
|
||||
import argparse # pylint: disable=wrong-import-order
|
||||
import argparse # FIXME:qt6: disable=wrong-import-order
|
||||
from qutebrowser.misc import earlyinit
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue