haskell / haskell/stylish-haskell
DataTypes style
- Lenguaje dominante
- Haskell
- Estrellas
- 1k
- Forks
- 153
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Hello!
It would be great to add option to style DataTypes and other structures, for example:
```
data Point = Point
{ pointX :: Double, pointY :: Double
, pointName :: String
}
deriving (Show)
```
should be changed to the following (or simmilar):
```
data Point = Point { pointX :: Double
, pointY :: Double
, pointName :: String
} deriving (Show)
```
Additional the ability to enable or disable some pretification parts would be very usefull - for example, some users would not like to put types in the same column (like in my example)
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.