qt6: Keep pylint import order checks disabled
This commit is contained in:
parent
729d7ce69d
commit
7a2cee44b1
|
|
@ -58,8 +58,8 @@ disable=locally-disabled,
|
||||||
missing-type-doc,
|
missing-type-doc,
|
||||||
missing-param-doc,
|
missing-param-doc,
|
||||||
useless-param-doc,
|
useless-param-doc,
|
||||||
wrong-import-order, # FIXME:qt6 (lint)
|
wrong-import-order, # doesn't work with qutebrowser.qt, even with known-third-party set
|
||||||
ungrouped-imports, # FIXME:qt6 (lint)
|
ungrouped-imports, # ditto
|
||||||
|
|
||||||
[BASIC]
|
[BASIC]
|
||||||
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ except ImportError:
|
||||||
sys.exit(100)
|
sys.exit(100)
|
||||||
check_python_version()
|
check_python_version()
|
||||||
|
|
||||||
import argparse # FIXME:qt6 (lint): disable=wrong-import-order
|
import argparse
|
||||||
from qutebrowser.misc import earlyinit
|
from qutebrowser.misc import earlyinit
|
||||||
from qutebrowser.qt import machinery
|
from qutebrowser.qt import machinery
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue