racket-language-server icon indicating copy to clipboard operation
racket-language-server copied to clipboard

Good first issue?

Open Eugleo opened this issue 6 years ago • 2 comments

Hey, I'd love to help you in some way. I don't have a lot of experience with Racket, but I'm sure I'd be able to do something given enough time. Is there any first issue you would recommend tackling?

Eugleo avatar Jan 31 '19 14:01 Eugleo

Hi @Eugleo,

I'm not currently working on the racket-language-server. When starting out contributing to a new project in general low hanging fruit is to read through and improve the documentation. It also helps to actually use the project and finding rough edges you can polish. You can also look at the issues and see what you find interesting to work on to get some ideas.

Cheers, David

dvc94ch avatar Jan 31 '19 16:01 dvc94ch

Just as a note for people considering to contribute. My opinion is that the current approach might not be optimal. Most language servers reimplement a parser with for example treesitter. The current implementation lacks the performance necessary + 99% of the time the code has syntax errors. The racket ide only performs analysis when there are no errors, it's not an ideal design. Rust/typescript have great ide support built into the compiler. For legacy languages I think starting over is the best approach. Maybe it's even possible to write a library that performs most of the heavy lifting in a language agnostic way (see xtext as a source of inspiration)...

dvc94ch avatar Apr 26 '19 09:04 dvc94ch