An autohooks plugin for Python code formatting via isort.
You can install the latest stable release of autohooks-plugin-isort from the Python Package Index using pip:
python3 -m pip install autohooks-plugin-isort
It is highly encouraged to use poetry for maintaining your project's dependencies. Normally autohooks-plugin-isort is installed as a development dependency.
poetry add --dev autohooks-plugin-isort
poetry install
To activate the isort autohooks plugin please add the following setting to your pyproject.toml file.
[tool.autohooks]
pre-commit = ["autohooks.plugins.isort"]
By default, autohooks plugin isort checks all files with a .py ending. If only the imports of files in a sub-directory or files with different endings should be sorted, just add the following setting:
[tool.autohooks]
pre-commit = ["autohooks.plugins.isort"]
[tool.autohooks.plugins.isort]
include = ['foo/*.py', '*.foo']
When using autohooks-plugins-isort
in combination with
autohooks-plugin-black,
the following configuration is recommended to ensure a consistent formatting:
[tool.isort]
profile = "black"
This project is maintained by Greenbone AG.
Your contributions are highly appreciated. Please create a pull request on GitHub. Bigger changes need to be discussed with the development team via the issues section at GitHub first.
Copyright (C) 2019 - 2023 Greenbone AG
Licensed under the GNU General Public License v3.0 or later.