standard / semistandard

:icecream: All the goodness of `standard/standard` with semicolons sprinkled on top.
MIT License
1.41k stars 124 forks source link

Vim syntastic plugin not reporting errors #32

Closed tejasshah93 closed 8 years ago

tejasshah93 commented 8 years ago

Tried adding this line to .vimrc

let g:syntastic_javascript_checkers = ['semistandard']

But it doesn't report errors on saving a .js file in Vim. Am I missing something here? P.S. semistandard is installed globally

joshuakarjala commented 8 years ago

I have same issue. Tested with standard and it work there but not with semistandard

joshuakarjala commented 8 years ago

Fixed with:

let g:syntastic_javascript_checkers=['standard']
let g:syntastic_javascript_standard_exec = 'semistandard'
dcousens commented 8 years ago

Awesome @joshuakarjala :+1:

tejasshah93 commented 8 years ago

@joshuakarjala works perfectly :+1:

Closing this issue