Flake8 wrapper to make it nice and configurable
Project description
It's a Flake8 wrapper to make it cool.
- Shareable and remote configs.
- Legacy-friendly: ability to get report only about new errors.
- Caching for much better performance.
- Use only specified plugins, not everything installed.
- Manage codes per plugin.
- Enable and disable plugins and codes by wildcard.
- Make output beautiful.
- pyproject.toml support.
- Show codes for installed plugins.
- Show all messages and codes for a plugin.
- Check that all required plugins are installed.
- Syntax highlighting in messages and code snippets.
- PyLint integration.
- Allow codes intersection for different plugins.
Installation
python3 -m pip install --user flakehell
Usage
First of all, let's create pyproject.toml
config:
[tool.flakehell]
# optionally inherit from remote config (or local if you want)
base = "https://raw.githubusercontent.com/life4/flakehell/master/pyproject.toml"
# specify any flake8 options. For example, exclude "example.py":
exclude = ["example.py"]
# make output nice
format = "grouped"
# 80 chars aren't enough in 21 century
max_line_length = 90
# show line of source code in output
show_source = true
# list of plugins and rules for them
[tool.flakehell.plugins]
# include everything in pyflakes except F401
pyflakes = ["+*", "-F401"]
# enable only codes from S100 to S199
flake8-bandit = ["-*", "+S1??"]
# enable everything that starts from `flake8-`
"flake8-*" = ["+*"]
# explicitly disable plugin
flake8-docstrings = ["-*"]
Show plugins that aren't installed yet:
flakehell missed
Show installed plugins, used plugins, specified rules, codes prefixes:
flakehell plugins
Show codes and messages for a specific plugin:
flakehell codes pyflakes
Run flake8 against the code:
flakehell lint
This command accepts all the same arguments as Flake8.
Read flakehell.readthedocs.io for more information.
The FlakeHell mascot (Flaky) is created by @diana_leit and licensed under the CC BY-SA 4.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flakehell-0.4.5.tar.gz
(28.1 kB
view details)
Built Distribution
flakehell-0.4.5-py3-none-any.whl
(36.2 kB
view details)
File details
Details for the file flakehell-0.4.5.tar.gz
.
File metadata
- Download URL: flakehell-0.4.5.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: DepHell/0.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdff5531df5e5acf3d84fa08b9c511d75d85004735b7a9f30c99dae1cf097b67 |
|
MD5 | de2c88791015a01d4401b82b05f483f3 |
|
BLAKE2b-256 | 200de8f36ec506c0ea9479c437f611f52f22162a8b1edd921520a17e4dffeb2a |
File details
Details for the file flakehell-0.4.5-py3-none-any.whl
.
File metadata
- Download URL: flakehell-0.4.5-py3-none-any.whl
- Upload date:
- Size: 36.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: DepHell/0.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a620f050586ef28b13a13e456ea4cfb55676067a13651e6009a47324eddcf68 |
|
MD5 | 1396fc53411c5551903bba0627981cfc |
|
BLAKE2b-256 | 1e08d0cffff3d15f3d5aabc28176e7b5b524710255931c11079c107acdd29715 |