-
Notifications
You must be signed in to change notification settings - Fork 114
Closed
Description
Problem
Hindent doesn't seem to support NumericUnderscores.
- I checked the issue tracker for existing issues about this problem.
- I'm using the latest version of hindent. (5.2.7)
Input haskell
{-# LANGUAGE NumericUnderscores #-}
module Foo where
foo = 10_000Expected output haskell
{-# LANGUAGE NumericUnderscores #-}
module Foo where
foo = 10_000Actual output haskell
{-# LANGUAGE NumericUnderscores #-}
module Foo where
foo = 10 _000Note the space between 10 and _000.
Also doesn't work when the extension is enabled in Stack package.yaml.
Metadata
Metadata
Assignees
Labels
No labels