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
When running the gren format <file path> command:
gren format <file path>
Comment blocks written like:
{-| appends new line character Some more info I deem important -} appendNewLine : String -> String appendNewLine input = input ++ "\n"
Will be formatted to:
appendNewLine : String -> String appendNewLine input = input ++ "\n"
Comment blocks without the | will be moved instead of removed like so:
|
{- appends new line character Hello World -} appendNewLine : String -> String appendNewLine input = input ++ "\n"
Single Line comments will be moved away and above code
-- appends new line character appendNewLine : String -> String appendNewLine input = input ++ "\n"
The text was updated successfully, but these errors were encountered:
Thank you for reporting this.
The person who contributed the formatter suddenly stopped working on it, and it hasn't seen activity in a while.
I fully expect to re-write the parser with gren-in-gren, though.
Sorry, something went wrong.
No branches or pull requests
Comment blocks written like:
Will be formatted to:
Comment blocks without the
|
will be moved instead of removed like so:Will be formatted to:
Single Line comments will be moved away and above code
Will be formatted to:
The text was updated successfully, but these errors were encountered: