From 8900ccbba808bf59bbf88e53c57c4539fa5add11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Fri, 27 Sep 2024 16:34:41 +0200 Subject: [PATCH] Suggest disabling `ungrouped-imports` in FAQ when using `isort` (#9976) `isort` can be pretty flexible about grouping the imports, and sometimes its configuration may be incompatible with not only `wrong-imports-order` but with the `ungrouped-imports` rule too. --- doc/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/faq.rst b/doc/faq.rst index a39c733619..ec624da6b1 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -107,7 +107,7 @@ pydocstyle_: missing-module-docstring, missing-class-docstring, missing-function pep8-naming_: invalid-name, bad-classmethod-argument, bad-mcs-classmethod-argument, no-self-argument -isort_ and flake8-import-order_: wrong-import-order +isort_ and flake8-import-order_: ungrouped-imports, wrong-import-order .. _`pycodestyle`: https://github.com/PyCQA/pycodestyle .. _`pyflakes`: https://github.com/PyCQA/pyflakes