You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File-based configuration reload was removed from #10158 because it was using a file-watcher on the server side, which is actually not recommended by the LSP specification. Instead, we should listen to the didChangeWatchedFiles notification to reload configuration.
The text was updated successfully, but these errors were encountered:
## Summary
Fixes#10366.
`ruff server` now registers a file watcher on the client side using the
LSP protocol, and listen for events on configuration files. On such an
event, it reloads the configuration in the 'nearest' workspace to the
file that was changed.
## Test Plan
N/A
Summary
File-based configuration reload was removed from #10158 because it was using a file-watcher on the server side, which is actually not recommended by the LSP specification. Instead, we should listen to the
didChangeWatchedFiles
notification to reload configuration.The text was updated successfully, but these errors were encountered: