flake_master is a manager for flake8 plugins and configuration.
If you have multiple projects with rich flake8 setup, you know how painful it could be to keep flake8 setup in all projects up to date and synced. This is what flake master does.
This library is inspired by eslint and does pretty much the same as nitpick or flakehell. I need simple tool that helps with flake8 configuration management. Also I'm bored.
pip install flake_master
Flake master can help with flake8 set setup and upgrade.
flake_master setup <preset name or path> <dir to do the setup>
This will do the following:
- download preset with all plugins versions and project setup (from Github);
- add required packages to
requirements.txt
; - add plugins configuration to
setup.cfg
; - create
.flake_master
file with current preset version (add the file to vsc).
flake_master upgrade <dir with .flake_master>
This command will fetch last version of preset from .flake_master
and apply
it to requirements.txt
and setup.py
.
Beware, it can overwrite some data, that was updated by flake_master
and
then manually updated.
We would love you to contribute to our project. It's simple:
- Create an issue with bug you found or proposal you have. Wait for approve from maintainer.
- Create a pull request. Make sure all checks are green.
- Fix review comments if any.
- Be awesome.
Here are useful tips:
- You can run all checks and tests with
make check
. Please do it before TravisCI does. - We use BestDoctor python styleguide.
- We respect Django CoC. Make soft, not bullshit.