Easily install and update centralized pre-commit hooks and their configuration files in decentralized repositories
Project description
Centralized pre-commit
configuration
Easily install and update centralized pre-commit hooks and their configuration files in decentralized repositories.
To be able to validate and automatically fix commits we're using git hooks.
We're also heavily relying on pre-commit
, which is a framework for managing
and maintaining multi-language pre-commit hooks. Please refer to the
pre-commit documentation here.
Philosophy
In order to be able to install all the tools and linters in a single
command with up to date centralized configurations, we're copying the
configurations files of your tools (.pre-commit-config.yaml
, isort.cfg
, .flake8
,
.clang-format
, ...) from an URL to your local git directory and we
then install pre-commit
.
Why not use only pre-commit
by @asotile? Well, in his words:
pre-commit will not directly support mutability in configuration (this includes referencing a centralized repository). This causes lots of issues with repeatability and maintenance in general. This was an early design decision after seeing the pain caused at scale when a linter changes behaviour and suddenly every repository's master branch is broken.
So if you disagree and want decentralized repository with centralized lint configuration, you need a tool on top of pre-commit to shoot yourself in the foot anyway.
More seriously, the alternative is to use all-repos to mass update a bunch of decentralized repositories with a decentralized configuration.
Installation
pip3 install centralized-pre-commit-conf
Usage
See pre-commit-conf --help
for options.
Installing hooks
For example with this config.yaml
in one of the appropriate
search paths:
configuration_files :
- ".pylintrc"
- ".pre-commit-config.yaml"
repository: https://mycompany.net/lint-conf/
branch: master
path: "pre-commit/static/"
gitignore_info_text: "# Configuration file added automatically by 'centralized-pre-commit-conf'"
pre-commit-conf
would recover the defined configuration files from
https://mycompany.net/lint-conf/master/pre-commit/static/
and update the .gitignore
:
✨ Successfully retrieved .pre-commit-config.yaml ✨
✨ Successfully retrieved .pylintrc ✨
✨ Updated .gitignore successfully with {'.pre-commit-config.yaml', '.pylintrc'}. ✨
🎉 2 configuration files recovered and pre-commit installed correctly. 🎉
Here would the content of the .gitignore
:
# Configuration file added automatically by 'centralized-pre-commit-conf'
.pre-commit-config.yaml
.pylintrc
Then with the same configuration, using pre-commit-conf --branch hardcore-pylint-conf
would try to recover the configuration files
from https://mycompany.net/lint-conf/hardcore-pylint-conf/pre-commit/static/
instead.
Found existing .pre-commit-config.yaml ⁉️ Use '-f' or '--replace-existing' to force erase.
Found existing .pylintrc ⁉️ Use '-f' or '--replace-existing' to force erase.
All configuration files already existed.
Next commit supposing the .pre-commit-config.yaml
is done correctly
your modified files we be linted with the centralized configuration.
Development / contribution
pip3 install -e ".[test]"
pre-commit-conf
python3 -m pytest --cov centralized_pre_commit_conf
Pull requests are welcome :)
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
Hashes for centralized-pre-commit-conf-0.3.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90f0433f0b873f55ef0c903a8fdd24ec91ac641b86df62868483c3d4c57fc72d |
|
MD5 | d42f0ee7cd0fce8b44db74dd23900d0a |
|
BLAKE2b-256 | 1e4a62e52704b0c4eb45e94baeb58948967ba7ed6fe93b236aed94f5fdabba6e |
Hashes for centralized_pre_commit_conf-0.3.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0e636a0f8271336278a0b520c171bd0fd7449b6050b0dee654c29b3782e4545 |
|
MD5 | aa20abb8233e772eb09a07598d78363a |
|
BLAKE2b-256 | 7dd3831580f9e9d969f882c21303e0d3d16bde6e16a8f032aeef46cffbd2e771 |