-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose a public 'check' method #289
Conversation
@Seamooo - Is this roughly what's needed for the LSP? (Is there any way to get the LSP to pass us a path, even as a string, to include in the error messages?) |
edb603a
to
ac9391a
Compare
src/lib.rs
Outdated
@@ -15,3 +24,52 @@ pub mod printer; | |||
pub mod pyproject; | |||
mod python; | |||
pub mod settings; | |||
|
|||
/// Run ruff over Python source code directly. | |||
pub fn check(contents: &str) -> Result<Vec<Message>> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this, you can do:
use anyhow::Result;
use ruff;
fn main() -> Result<()> {
println!("{:?}", ruff::check("def f(): x = 1")?);
Ok(())
}
ac9391a
to
57dd0e6
Compare
@Seamooo - What are you planning to use to implement the LSP? https://github.com/ebkalderon/tower-lsp? |
the lsp can definitely pass a path, the source requirement is due to the dynamic nature of the buffer updating. I've implemented a rough version of the lsp from scratch https://github.com/Seamooo/ruffd, getting this in would enable a proof of concept. |
That's awesome. And it's here that we can plug into ruff as a library? |
(Did you write that implementation from scratch? Is it based off anything else?) |
Two questions:
|
df34549
to
e02ec1c
Compare
(I went ahead and did (1); if we pass the absolute |
Exactly |
it's implemented from scratch from the specification, with coc-nvim as the client to verify |
There's potentially some ambiguity for solving the |
e02ec1c
to
d08736e
Compare
If we pass |
@Seamooo - I've merged this for now. Let me know if it works for you or if we need to amend the API! |
Nice! That's awesome! What does it take to enable others to use the LSP from VS Code and elsewhere? |
(E.g., do we need to publish this on some sort of extension marketplace?) |
See: #271.