There exist vim users who lint JSX by shelling out to Emacs! https://github.com/neomake/neomake/blob/d000c894cd967e637ba7eaa83d2a225ab24a1d11/autoload/neomake/makers/ft/javascript.vim#L61-L73 (we've come full circle!)
miniblog.
Related Posts
Difftastic 0.16 is out! In this release:
* Substantially improved performance (a little over 2x)
* Improvements for Bash, OCaml and JSX
* Added Scala support
* Better handling of diff sliders
tree-sitter is really helpful in difftastic, but we still have to do some post-processing. We need to know which tokens are OK to move around (e.g. variables) and which aren't (delimiters).
In the second run, I've fixed delimiters in JSX, so you don't get mismatched > on h1.
I'm really excited about the possibility of using tree-sitter in difftastic. I get accurate JSX parsing for free!


