An autohooks plugin for python code linting via flake8.
You can install the latest stable release of autohooks-plugin-flake8 from the Python Package Index using pip:
python3 -m pip install autohooks-plugin-flake8
It is highly encouraged to use poetry for maintaining your project's dependencies. Normally autohooks-plugin-flake8 is installed as a development dependency.
poetry install
To activate the flake8 autohooks plugin please add the following setting to your pyproject.toml file.
[tool.autohooks]
pre-commit = ["autohooks.plugins.flake8"]
By default, autohooks plugin flake8 checks all files with a .py ending. If only files in a sub-directory or files with different endings should be formatted, just add the following setting:
[tool.autohooks]
pre-commit = ["autohooks.plugins.flake8"]
[tool.autohooks.plugins.flake8]
include = ['foo/*.py', '*.foo']
To configure flake8 you can specify command-line options in the default flake8 configuration file .flake8 in the root directory of the git repository. To learn more about flake8 configuration see the configuration file or the flake8 documentation. You can specify your own configuration file using
arguments = ["--config=/path/to/flake8config"]
inside the [tool.autohooks.plugins.flake8]
section of your projects pyproject.toml
.
See flake8 --help
for more details.
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.
SPDX-License-Identifier: GPL-3.0-or-later