sublimelsp / LSP-eslint

ESLint support for Sublime LSP plugin
MIT License
34 stars 5 forks source link

Update eslint server to latest master #25

Closed rchl closed 4 years ago

rchl commented 4 years ago

Todo

rwols commented 4 years ago

That custom workspace/configuration handler cannot work, because looking up a handler is first done in the Session object. If it's not found there, only then do we look it up in AbstractPlugin.

But we can change the behavior of course.

rchl commented 4 years ago

We could potentially have a workspace/configuration-specific hook to be able to alter the returned configuration?

rwols commented 4 years ago

Yes I think that would be best. It's probably not a good idea to first lookup handlers in the plugin class (we've already been there with inheritance).

rchl commented 4 years ago

I can integrate and release it already. The on_workspace_configuration will not work until next release of LSP but it's fine as it's an optional bonus.