diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-06 10:33:43 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-06 10:33:43 +0100 |
commit | 7e93181ba85969d657241f83e135c839d4d9cb05 (patch) | |
tree | faaa1cbb7b74c8ad240d619cdec48d3f888d6bed /CONTRIBUTING.md | |
parent | 192bf17e9268824c948a5b9c5bb61c7520ea47d8 (diff) | |
download | ale-7e93181ba85969d657241f83e135c839d4d9cb05.zip |
Add a CONTRIBUTING file.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..3c1f405f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,38 @@ +# Contributing to ALE + +1. [Guidelines](#guidelines) +2. [Creating Pull Requests](#pull-requests) + +<a name="guidelines"></a> + +# 1. Guidelines + +Have fun, and work on whatever floats your boat. Take It Easy :tm:. + +<a name="pull-requests"></a> + +# 2. Creating Pull Requests + +For code you write, make sure to credit yourself at the top of files you add, and probably those you modify. You can write +some comments at the top of your VIM files. + +```vim +" Author: John Smith <john.smith@gmail.com> +" Description: This file adds support for awesomelinter to the best language ever. +``` + +If you want to credit multiple authors, you can comma separate them. + +```vim +" Author: John Smith <john.smith@gmail.com>, Jane Doe <https://jane-doe.info> +``` + +# 2.1. Adding a new linter + +If you add a new linter, look for existing handlers first in the [handlers.vim](plugin/ale/handlers.vim) file. One of the handlers +there may already be able to handle your lines of output. If you find that your new linter replicates an existing error handler, +consider pulling it up into the [handlers.vim](plugin/ale/handlers.vim) file, and use the generic handler in both places. + +When you add a linter, make sure the language for the linter and the linter itself are present in the table in the +[README.md](README.md) file and in the Vim [help file](doc/ale.txt). The programs and linters are sorted alphabetically in the +table and list. |