Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 722 Bytes

Contributing.md

File metadata and controls

23 lines (16 loc) · 722 Bytes

Contributing to Algoneer Front-End

Thanks a lot for your interest to contribute to this repository!

Development Setup

This guide is supposed to help you to contribute code.

Git Hooks

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"
}