typescript-eslint-language-service icon indicating copy to clipboard operation
typescript-eslint-language-service copied to clipboard

vscode only ?

Open steflen opened this issue 4 years ago • 3 comments

does this add any value to other IDEs like intelliJ webstorm ?

gg wp ;)

steflen avatar May 15 '20 12:05 steflen

Yes it adds value to Eclipse IDE through the Wild Web Developer plugin. See here.

Big thanks to @Quramy for your work :)

AObuchow avatar Jun 01 '20 15:06 AObuchow

Should work wherever tsserver is supported. I have it running on Vim (vim-ale or coc.nvim both work). Thanks @Quramy, seems to work much faster than what I had before (running eslint on file changes).

wavded avatar Oct 29 '20 23:10 wavded

seems to work much faster than what I had before (running eslint on file changes)

Yes. My plugin skips lexing and parsing because parsed AST is provided by tsserver. My plugin only does convert from TypeScript AST to ESLint AST and run ESLint engine using the AST.

https://quramy.github.io/ts-eslint-talk/#slide=18

Quramy avatar Nov 06 '20 09:11 Quramy