aboutsummaryrefslogtreecommitdiff
path: root/.vim/bundle/vim-startify/CONTRIBUTING.md
diff options
context:
space:
mode:
authorxero <x@xero.nu>2014-05-05 15:09:26 -0400
committerxero <x@xero.nu>2014-05-05 15:09:26 -0400
commit89a2b67f2427d961bb2f0de771a0290d85e379f9 (patch)
treea30fa26360b7c3cf442689650da54865ac0f6fc3 /.vim/bundle/vim-startify/CONTRIBUTING.md
parent53b47ce8258f7efe380cc9dab09826b1f0e9bc27 (diff)
downloaddotfiles_ascii-89a2b67f2427d961bb2f0de771a0290d85e379f9.tar.xz
dotfiles_ascii-89a2b67f2427d961bb2f0de771a0290d85e379f9.zip
add vim configs -- yes i have joined the cult of vim
Diffstat (limited to '.vim/bundle/vim-startify/CONTRIBUTING.md')
-rw-r--r--.vim/bundle/vim-startify/CONTRIBUTING.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/.vim/bundle/vim-startify/CONTRIBUTING.md b/.vim/bundle/vim-startify/CONTRIBUTING.md
new file mode 100644
index 0000000..a01753e
--- /dev/null
+++ b/.vim/bundle/vim-startify/CONTRIBUTING.md
@@ -0,0 +1,28 @@
+CONTRIBUTING
+============
+
+If you intend to contribute to this project, please keep some simple rules in
+mind:
+
+ - one commit per feature/fix
+ - the short commit message shouldn't be longer than 50 characters
+ - the short commit message should start with an uppercase character
+ - use the imperative for the short commit message
+ - don't finish the short commit message with a '.'
+ - don't use github-specific syntax to close an issue (I'll do that, when
+ merging into master)
+ - it's always a good idea to have a look at 'git log' to get an idea how to
+ format one's own commits
+ - if you have questions about a certain patch or feature requests, just open
+ a Github issue
+
+Examples
+--------
+
+```
+Bad: "fixed loop to start from 0 instead of 1"
+Good: "Avoid off-by-one issue in skiplist loop"
+
+Bad: "fixed typo"
+Good: "Docs: typo"
+```