Thanks a lot for your interest to contribute to this repository!
This guide is supposed to help you to contribute code.
This repository uses Git Hooks for running scripts before committing or pushing new code to prevent errors early. Please use the Git Hooks by running:
git config --local core.hooksPath .githooks/
It's better not to use this, but if you ever need to locally create a commit with errors. Make sure to fix those errors before merging your branch.
# Commit without doing pre-commit checks
lookMomNoHands() {
git commit --no-verify -m "$1"
}