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
Hindent doesn't seem to support NumericUnderscores.
NumericUnderscores
Input haskell
{-# LANGUAGE NumericUnderscores #-} module Foo where foo = 10_000
Expected output haskell
Actual output haskell
{-# LANGUAGE NumericUnderscores #-} module Foo where foo = 10 _000
Note the space between 10 and _000.
10
_000
Also doesn't work when the extension is enabled in Stack package.yaml.
package.yaml
The text was updated successfully, but these errors were encountered:
I ran into a similar issue in Floskell and opened Numeric Litaral Issues in HSE, but it was blocking me so I submitted HexFloatLiterals in HSE and building on it NumericUndersores in HSE.
Hoping they get merged in at some point
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Problem
Hindent doesn't seem to support
NumericUnderscores
.Input haskell
Expected output haskell
Actual output haskell
Note the space between
10
and_000
.Also doesn't work when the extension is enabled in Stack
package.yaml
.The text was updated successfully, but these errors were encountered: