From 57c0261f96fcd9aa6e30c6ea037c08e2f6d2bf62 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 4 Dec 2013 08:53:24 -0800 Subject: [PATCH] Add Git commit messages section --- CONTRIBUTING.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3f65ee1e..ccbc3c424 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,6 @@ specs * Avoid placing files in `vendor`. 3rd-party packages should be added as a `package.json` dependency. - * Commit messages are in the present tense * Files end with a newline. * Requires should be in the following order: * Built in Node Modules (such as `path`) @@ -30,3 +29,12 @@ * Use `path.join()` to concatenate filenames. * Temporary directory is not `/tmp` on Windows, use `os.tmpdir()` when possible + +## Git Commit Messages + * Use the present tense + * Reference issues and pull requests liberally + * Consider starting the commit message with an applicable emoji: + * :lipstick: when improving the format/structure of the code + * :racehorse: when improving performance + * :non-potable_water: when plugging memory leaks + * :memo: when writing docs