From b4735bb6f7d29542bb1c9ce77f0d091bb0c25e75 Mon Sep 17 00:00:00 2001 From: Christoph Daniel Miksche Date: Sat, 1 Jun 2019 12:41:26 +0200 Subject: [PATCH] Create CONTRIBUTING.md Create a few guidelines for contributing to this repo. --- CONTRIBUTING.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..f4e324c --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,9 @@ +# Contributing + +Thank you for your interest to contribute to this repository. + +All good contributions which add a new feature or close a issue will be accepted, however there a few guidelines which should be followed: + +1. Commit messages should follow the Angular Commit Message Format: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit +2. New features should be added with a new function, if a new function is possible. +3. Test-driven development (TDD) should be followed - this means you should always create unit tests for your function before you create the corresponding function.