diff options
author | nico <nico@magicbroccoli.de> | 2020-09-18 21:32:23 +0200 |
---|---|---|
committer | nico <nico@magicbroccoli.de> | 2020-09-18 21:32:23 +0200 |
commit | b113b9ce60d41397da697c04bcf901834346af27 (patch) | |
tree | 8ba1424825434275da09e3f05c95620354e542b2 /README.md | |
parent | bf49087072dcda8841b4a1084767c4fc1b0da68e (diff) |
pre-commit framework
+ add pre-commit framework to reduce the amount the ci workers have to stem
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -116,3 +116,16 @@ The potential reasons are sorted by probability of being the root cause. | code | potential reason | | :---: | :---| | 17 | login credential mismatch, potential api permission problem | + +### pre-commit framework +This project utilizes the [pre-commit](https://pre-commit.com/) framework to automate various small hick-ups that tend +to happen prior to committing. + +To use the framework it is necessary to follow these steps: +```bash +# install the pre-commit hook +pre-commit install + +# to test your staged files manually run +pre-commit run +``` |