chemzqm / jscheck

Javascript syntax check plugin for vim
0 stars 0 forks source link

JSCheck Error #1

Open hyaray opened 7 years ago

hyaray commented 7 years ago

installed, and add in vimrc with let g:syntastic_mode_map = { \ "mode": "active", \ "passive_filetypes": ["javascript"] } let g:jscheck_no_autocheck = 1 :JSCheck show the Error below image

chemzqm commented 7 years ago

I recommend use eslint and vim plugins which use async checking, like:

https://github.com/w0rp/ale https://github.com/neomake/neomake

the acorn parser used with jscheck could be not working with code like jsx.

hyaray commented 7 years ago

OK, thank you ver much for quickly reply and suggest!!!