mirror of https://github.com/dense-analysis/ale
Merge pull request #26 from gavocanov/master
Add support for javascript.jsx filetype
This commit is contained in:
commit
23383ce547
|
@ -48,3 +48,10 @@ call ALEAddLinter('javascript', {
|
|||
\ 'command': 'eslint -f unix --stdin',
|
||||
\ 'callback': 'ale_linters#javascript#eslint#Handle',
|
||||
\})
|
||||
|
||||
call ALEAddLinter('javascript.jsx', {
|
||||
\ 'name': 'eslint',
|
||||
\ 'executable': 'eslint',
|
||||
\ 'command': 'eslint -f unix --stdin',
|
||||
\ 'callback': 'ale_linters#javascript#eslint#Handle',
|
||||
\})
|
||||
|
|
|
@ -48,3 +48,10 @@ call ALEAddLinter('javascript', {
|
|||
\ 'command': 'jscs -r unix -n -',
|
||||
\ 'callback': 'ale_linters#javascript#jscs#Handle',
|
||||
\})
|
||||
|
||||
call ALEAddLinter('javascript.jsx', {
|
||||
\ 'name': 'jscs',
|
||||
\ 'executable': 'jscs',
|
||||
\ 'command': 'jscs -r unix -n -',
|
||||
\ 'callback': 'ale_linters#javascript#jscs#Handle',
|
||||
\})
|
||||
|
|
|
@ -56,3 +56,10 @@ call ALEAddLinter('javascript', {
|
|||
\ 'command': 'jshint --reporter unix --config ' . g:ale_jshint_config_loc . ' -',
|
||||
\ 'callback': 'ale_linters#javascript#jshint#Handle',
|
||||
\})
|
||||
|
||||
call ALEAddLinter('javascript.jsx', {
|
||||
\ 'name': 'jshint',
|
||||
\ 'executable': 'jshint',
|
||||
\ 'command': 'jshint --reporter unix --config ' . g:ale_jshint_config_loc . ' -',
|
||||
\ 'callback': 'ale_linters#javascript#jshint#Handle',
|
||||
\})
|
||||
|
|
Loading…
Reference in New Issue