You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formatter will reformat unboxed tuples to regular tuples by dropping the # character and removing necessary whitespace between the unboxed tuple and tuples elements. For example, the following type:
The formatter will reformat unboxed tuples to regular tuples by dropping the
#
character and removing necessary whitespace between the unboxed tuple and tuples elements. For example, the following type:would be reformatted as:
I'm not sure if this is specific to certain configuration. The formatter will drop unboxed tuples even if:
.stylish-haskell.yaml
option hascabal: false
andUnboxedTuples
listed underlanguage_extensions:
.UnboxedTuples
extension is listed underdefault-extensions
in the package cabal file.{-# LANGUAGE UnboxedTuples #-}
pragma is added to the*.hs
file containing the typeT
.The text was updated successfully, but these errors were encountered: