summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--ale_linters/coffee/coffee.vim17
-rw-r--r--doc/ale.txt2
3 files changed, 19 insertions, 2 deletions
diff --git a/README.md b/README.md
index f9e9e42d..f90e8784 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ name. That seems to be the fairest way to arrange this table.
| Bourne Shell | [-n flag](http://linux.die.net/man/1/sh), [shellcheck](https://www.shellcheck.net/) |
| C | [gcc](https://gcc.gnu.org/) |
| C++ (filetype cpp)| [gcc](https://gcc.gnu.org/) |
-| CoffeeScript | [coffeelint](https://www.npmjs.com/package/coffeelint) |
+| CoffeeScript | [coffee](http://coffeescript.org/), [coffeelint](https://www.npmjs.com/package/coffeelint) |
| CSS | [csslint](http://csslint.net/) |
| Cython (pyrex filetype) | [cython](http://cython.org/) |
| D | [dmd](https://dlang.org/dmd-linux.html)^ |
diff --git a/ale_linters/coffee/coffee.vim b/ale_linters/coffee/coffee.vim
new file mode 100644
index 00000000..a19017c6
--- /dev/null
+++ b/ale_linters/coffee/coffee.vim
@@ -0,0 +1,17 @@
+" Author: KabbAmine - https://github.com/KabbAmine
+" Description: Coffee for checking coffee files
+
+if exists('g:loaded_ale_linters_coffee_coffee')
+ finish
+endif
+
+let g:loaded_ale_linters_coffee_coffee = 1
+
+call ALEAddLinter('coffee', {
+\ 'name': 'coffee',
+\ 'executable': 'coffee',
+\ 'command': 'coffee -cp -s',
+\ 'output_stream': 'stderr',
+\ 'callback': 'ale#handlers#HandleGCCFormat',
+\})
+
diff --git a/doc/ale.txt b/doc/ale.txt
index 70eb1825..6772c25a 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -44,7 +44,7 @@ The following languages and tools are supported.
* Bourne Shell: 'shell' (-n flag), 'shellcheck'
* C: 'gcc'
* C++ (filetype cpp): 'gcc'
-* CoffeeScript: 'coffelint'
+* CoffeeScript: 'coffee', 'coffelint'
* CSS: 'csslint'
* Cython (pyrex filetype): 'cython'
* D: 'dmd'