mirror of https://github.com/dense-analysis/ale
Add coffee linter
This commit is contained in:
parent
85d8d2f217
commit
5eb7106359
|
@ -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)^ |
|
||||
|
|
|
@ -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',
|
||||
\})
|
||||
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue