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
# Never align the right hand side of some elements.
- simple_align:
cases: never
top_level_patterns: never
records: never
multi_way_if: never
- squash: {}
and after using stylish-haskell on one of my files, I get the following as part of the diff:
st <- getFileStatus fp
if
| isRegularFile st -> pure (fp : files, dirs)
- | isDirectory st -> pure (files, fp : dirs)
- | otherwise -> pure (files, dirs)
+ | isDirectory st -> pure (files, fp : dirs)
+ | otherwise -> pure (files, dirs)
Using version 0.14.6.0.
The text was updated successfully, but these errors were encountered:
In my
.stylish-haskell.yaml
I have:and after using
stylish-haskell
on one of my files, I get the following as part of the diff:Using version
0.14.6.0
.The text was updated successfully, but these errors were encountered: