aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authornico <nico@magicbroccoli.de>2020-09-18 21:32:23 +0200
committernico <nico@magicbroccoli.de>2020-09-18 21:32:23 +0200
commitb113b9ce60d41397da697c04bcf901834346af27 (patch)
tree8ba1424825434275da09e3f05c95620354e542b2 /README.md
parentbf49087072dcda8841b4a1084767c4fc1b0da68e (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.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index ac33b00..d65889d 100644
--- a/README.md
+++ b/README.md
@@ -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
+```