├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── COPYING ├── MANIFEST.in ├── README.rst ├── flake8_import_order ├── __about__.py ├── __init__.py ├── checker.py ├── flake8_linter.py ├── pylama_linter.py ├── stdlib_list.py └── styles.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_cases │ ├── additional_newline.py │ ├── additional_newline_cryptography.py │ ├── additional_newline_edited.py │ ├── bug_212_regression.py │ ├── complete_appnexus.py │ ├── complete_appnexus_alt0.py │ ├── complete_appnexus_alt1.py │ ├── complete_cryptography.py │ ├── complete_cryptography_alt0.py │ ├── complete_cryptography_alt1.py │ ├── complete_edited.py │ ├── complete_edited_alt0.py │ ├── complete_edited_alt1.py │ ├── complete_google.py │ ├── complete_pep8.py │ ├── complete_pycharm.py │ ├── complete_smarkets.py │ ├── missing_newline.py │ ├── missing_newline_cryptography.py │ ├── mixed_groups.py │ ├── namespace.py │ ├── noqa.py │ ├── stdlib_shadowing.py │ ├── wrong_from_import_order.py │ ├── wrong_from_import_order_cryptography.py │ ├── wrong_from_import_same.py │ ├── wrong_import_order.py │ ├── wrong_import_order_cryptography.py │ ├── wrong_relative_order.py │ ├── wrong_section.py │ └── wrong_section_appnexus.py ├── test_flake8_linter.py ├── test_pylama_linter.py ├── test_stdlib.py └── test_style_cases.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/README.rst -------------------------------------------------------------------------------- /flake8_import_order/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/__about__.py -------------------------------------------------------------------------------- /flake8_import_order/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/__init__.py -------------------------------------------------------------------------------- /flake8_import_order/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/checker.py -------------------------------------------------------------------------------- /flake8_import_order/flake8_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/flake8_linter.py -------------------------------------------------------------------------------- /flake8_import_order/pylama_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/pylama_linter.py -------------------------------------------------------------------------------- /flake8_import_order/stdlib_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/stdlib_list.py -------------------------------------------------------------------------------- /flake8_import_order/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/flake8_import_order/styles.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cases/additional_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/additional_newline.py -------------------------------------------------------------------------------- /tests/test_cases/additional_newline_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/additional_newline_cryptography.py -------------------------------------------------------------------------------- /tests/test_cases/additional_newline_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/additional_newline_edited.py -------------------------------------------------------------------------------- /tests/test_cases/bug_212_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/bug_212_regression.py -------------------------------------------------------------------------------- /tests/test_cases/complete_appnexus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_appnexus.py -------------------------------------------------------------------------------- /tests/test_cases/complete_appnexus_alt0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_appnexus_alt0.py -------------------------------------------------------------------------------- /tests/test_cases/complete_appnexus_alt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_appnexus_alt1.py -------------------------------------------------------------------------------- /tests/test_cases/complete_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_cryptography.py -------------------------------------------------------------------------------- /tests/test_cases/complete_cryptography_alt0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_cryptography_alt0.py -------------------------------------------------------------------------------- /tests/test_cases/complete_cryptography_alt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_cryptography_alt1.py -------------------------------------------------------------------------------- /tests/test_cases/complete_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_edited.py -------------------------------------------------------------------------------- /tests/test_cases/complete_edited_alt0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_edited_alt0.py -------------------------------------------------------------------------------- /tests/test_cases/complete_edited_alt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_edited_alt1.py -------------------------------------------------------------------------------- /tests/test_cases/complete_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_google.py -------------------------------------------------------------------------------- /tests/test_cases/complete_pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_pep8.py -------------------------------------------------------------------------------- /tests/test_cases/complete_pycharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_pycharm.py -------------------------------------------------------------------------------- /tests/test_cases/complete_smarkets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/complete_smarkets.py -------------------------------------------------------------------------------- /tests/test_cases/missing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/missing_newline.py -------------------------------------------------------------------------------- /tests/test_cases/missing_newline_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/missing_newline_cryptography.py -------------------------------------------------------------------------------- /tests/test_cases/mixed_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/mixed_groups.py -------------------------------------------------------------------------------- /tests/test_cases/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/namespace.py -------------------------------------------------------------------------------- /tests/test_cases/noqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/noqa.py -------------------------------------------------------------------------------- /tests/test_cases/stdlib_shadowing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/stdlib_shadowing.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_from_import_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_from_import_order.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_from_import_order_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_from_import_order_cryptography.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_from_import_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_from_import_same.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_import_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_import_order.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_import_order_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_import_order_cryptography.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_relative_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_relative_order.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_section.py -------------------------------------------------------------------------------- /tests/test_cases/wrong_section_appnexus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_cases/wrong_section_appnexus.py -------------------------------------------------------------------------------- /tests/test_flake8_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_flake8_linter.py -------------------------------------------------------------------------------- /tests/test_pylama_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_pylama_linter.py -------------------------------------------------------------------------------- /tests/test_stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_stdlib.py -------------------------------------------------------------------------------- /tests/test_style_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tests/test_style_cases.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/flake8-import-order/HEAD/tox.ini --------------------------------------------------------------------------------