summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/jscs.vim
blob: aef607ecf991889388100b9d578feee081736841 (plain)
1
2
3
4
5
6
7
8
9
" Author: Chris Kyrouac - https://github.com/fijshion
" Description: jscs for JavaScript files

call ale#linter#Define('javascript', {
\   'name': 'jscs',
\   'executable': 'jscs',
\   'command': 'jscs -r unix -n -',
\   'callback': 'ale#handlers#unix#HandleAsError',
\})