-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[ty] CLI reference #17978
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
[ty] CLI reference #17978
Conversation
crates/ty/src/lib.rs
Outdated
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.
I needed access to Args
(now Cli
) which is why I had to introduce a lib.rs
.
To avoid repeating the mod
in both lib
and main.rs
, I decided to move the run
logic to lib.rs
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.
This is copy paste from uv
|
4628da7
to
86b8838
Compare
I'll merge this without review. This is all code that's easy to replace if anyone dares to touch it 😅 |
@@ -32,6 +33,7 @@ imara-diff = { workspace = true } | |||
indicatif = { workspace = true } | |||
itertools = { workspace = true } | |||
libcst = { workspace = true } | |||
markdown = { version = "1.0.0" } |
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.
this is a bit unfortunate but implementing a markdown to HTML converter is a bit out of scope right now ;)
|
f767190
to
0a8ce23
Compare
No description provided.