From 78e22161215676319d6d0df4441a8e5764bdcc56 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sun, 7 Aug 2016 14:49:26 +0200 Subject: [PATCH] Remove CONTRIBUTING Repo doesn't get enough contributions and the CONTRIBUTING file was rather bloated anyway. --- CONTRIBUTING.md | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 10b9862..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,29 +0,0 @@ -CONTRIBUTING -============ - -If you have any kind of feedback, simply create an issue on Github. This makes -it easier for everyone to track and comment recent developments. - -If you want to contribute, please keep a few simple rules in mind: - -#### The commit - -- One commit per fix/addition. -- The short commit message shouldn't be longer than 50 characters. -- The short commit message must start with an uppercase character. -- The short commit message must start with the affected section or file followed - by a colon. -- The short commit message must use the - [imperative](https://en.wikipedia.org/wiki/Imperative_mood). -- The short commit message mustn't end with a `.`. -- The short commit message can be simply "Grammar" or "Typo", if the patch - fixes, well, grammar or typos. -- It's always a good idea to have a look at other commits to get an idea how to - format one's own commits messages. - -#### Example - -``` -Bad: "added my new plugin" -Good: "Plugins: add vim-newplugin" -```