We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello! I have a tool that "un-inlines" comments in a TOML list like so (coming from astral-sh/rye#1255 (comment)):
foo = [ --- "a", # Comment +++ "a", +++ # Comment "b", ]
I am wondering, would toml-sort be willing to add a flag that turns on re-inlining of comments? So it can essentially do this:
toml-sort
foo = [ --- "a", --- # Comment +++ "a", # Comment "b", ]
The text was updated successfully, but these errors were encountered:
rye add
No branches or pull requests
Hello! I have a tool that "un-inlines" comments in a TOML list like so (coming from astral-sh/rye#1255 (comment)):
I am wondering, would
toml-sort
be willing to add a flag that turns on re-inlining of comments? So it can essentially do this:The text was updated successfully, but these errors were encountered: