Flake8 wrapper to make it nice and configurable
Project description
It’s a Flake8 wrapper to make it cool.
Sharable and remote configs.
Legacy-friendly: ability to get report only about new errors.
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.
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://gitlab.com/life4/flakehell/raw/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 = ["-*"]
You can specify any flake8 settings in [tool.flakehell].
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.
Formatters
Formatters make errors output nice. Available formatters:
colored – for humans.
grouped – also colored, but all messages are explicitly grouped by file.
json – no colors, only one json-dict per line for every error.
Also, you can specify show_source = true in the config to show line of source code where error occurred with syntax highlighting.
Colored:
Colored with source code:
Grouped:
Grouped with source code:
JSON:
Integrating into a huge codebase
First of all, let’s create baseline.
flakehell baseline > baseline.txt
Then specify path to the baseline file:
[tool.flakehell]
baseline = "baseline.txt"
Now, flakehell lint command will ignore all your current errors. It will report only about new errors, all errors in a new code, or if old line of code was modified.
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
Built Distribution
File details
Details for the file flakehell-0.1.3.tar.gz
.
File metadata
- Download URL: flakehell-0.1.3.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41bf64373cfea8c29c0a1aad575ecaa8bd2979600a73bbb4e6ac3a9535eb0911 |
|
MD5 | 8bf69b8bebb0bc0b939930be70080854 |
|
BLAKE2b-256 | 94afa0ccf98bde9fb0c473797bef92f3ba9d54925db28b703f572d4e121174d1 |
File details
Details for the file flakehell-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: flakehell-0.1.3-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3f84a4262d4efb4b456dd15e7d6921326031ca2f99b70adedd9ae7e2986668f |
|
MD5 | a0dea610c615468f10972dcf5224bf9b |
|
BLAKE2b-256 | 8090262346571b71a1384c54cad2a067fc9e40b0e981abf3bf6229ed9be2814c |