Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

41 lines (24 loc) · 1.08 KB

Contributing

Thanks for your interest. This document includes guides and steps how to setup the local environment and make pull requests.

Table of Contents

Setup

Installing the dependencies

  1. Install Go. Visit Download and install for more information.
  2. Running go run main.go will automatically download the dependencies and execute the program.

Pre-commit

This repository leverages pre-commit to run custom git hooks.

  1. Install the git hooks

    $ pre-commit install
    

Each time that you make a commit, it will run all the git hooks specified in .pre-commit-config.yaml.

Pull requests

Each pull request requires a changelog entry. This can be generated by running:

$ make changelog

Commits

Please use the proper commit message format as elaborated by the AngularJS team.

All pull requests without proper commit message will be rejected.