FlakeHeaven is a [Flake8](https://gitlab.com/pycqa/flake8) wrapper to make it cool.
Project description
FlakeHeaven
FlakeHeaven is a Flake8 wrapper to make it cool.
This project is a fork of FlakeHell. FlakeHell and other forks of it such as flakehell/flakehell are no longer maintained and do not work with Flake8 4.0.x.
FlakeHeaven works with Flake8 4.0.1 or greater. This fork will be maintained by the community that developed the existing forks.
- Lint md, rst, ipynb, and more.
- 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.
- Make output beautiful.
- pyproject.toml support.
- Check that all required plugins are installed.
- Syntax highlighting in messages and code snippets.
- PyLint integration.
- Powerful GitLab support.
- Codes management:
- Manage codes per plugin.
- Enable and disable plugins and codes by wildcard.
- Show codes for installed plugins.
- Show all messages and codes for a plugin.
- Allow codes intersection for different plugins.
Compatibility
FlakeHeaven supports all flake8 plugins, formatters, and configs. However, FlakeHeaven has it's own beautiful way to configure enabled plugins and codes. So, options like --ignore
and --select
unsupported. You can have flake8 and FlakeHeaven in one project if you want but enabled plugins should be explicitly specified.
Installation
python3 -m pip install --user flakeheaven
Usage
First of all, let's create pyproject.toml
config:
[tool.flakeheaven]
# optionally inherit from remote config (or local if you want)
base = "https://raw.githubusercontent.com/flakeheaven/flakeheaven/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.flakeheaven.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:
flakeheaven missed
Show installed plugins, used plugins, specified rules, codes prefixes:
flakeheaven plugins
Show codes and messages for a specific plugin:
flakeheaven codes pyflakes
Run flake8 against the code:
flakeheaven lint
This command accepts all the same arguments as Flake8.
Read the documentation for more information.
Contributing
Contributions are welcome! A few ideas what you can contribute:
- Improve documentation.
- Add more tests.
- Improve performance.
- Found a bug? Fix it!
- Made an article about FlakeHeaven? Great! Let's add it into the
README.md
. - Don't have time to code? No worries! Just tell your friends and subscribers about the project. More users -> more contributors -> more cool features.
A convenient way to run tests is using Poetry:
curl -sSL https://install.python-poetry.org | python3 -
poetry install
poetry run pytest tests
Bug-tracker is disabled by-design to shift contributions from words to actions. Please, help us make the project better and don't stalk maintainers in social networks and on the street.
Thank you :heart:
The FlakeHeaven mascot (Flaky) is created by @illustrator.way 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
Built Distribution
File details
Details for the file flakeheaven-0.11.1.tar.gz
.
File metadata
- Download URL: flakeheaven-0.11.1.tar.gz
- Upload date:
- Size: 31.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.13-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20f5a573b8e85be5a73fed2e3967f7ab8b5e77714a5898d8b634dd31a0b75f9b |
|
MD5 | f37b936a655d6edd1fe61388c682813b |
|
BLAKE2b-256 | 08697862577eb9d047aaf6574316fcb2a24db1150ca83c94ff6be0d634c3eaaf |
File details
Details for the file flakeheaven-0.11.1-py3-none-any.whl
.
File metadata
- Download URL: flakeheaven-0.11.1-py3-none-any.whl
- Upload date:
- Size: 43.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.13-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5614165d95bf26c46af22db4e0ccc90e475c286f902c473de16730fad4735e5d |
|
MD5 | c9d338f689c3833cd36cad9d69b18873 |
|
BLAKE2b-256 | 073d0db2d21554e08d81e334067a7b9911a4004cdb98ad7f5fd8b260e5893c47 |