-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
According to haskell-style-guide, export list should be indented with 4 spaces:
module Graphics.Shape
( Shape(..)
, SomeShape(..)
, triangle
) whereThe current implementation indents it as:
module Graphics.Shape
( Shape(..)
, SomeShape(..)
, sphere
, triangle
) whereI guess the solution is to add a configurable variable for export list offset.
Metadata
Metadata
Assignees
Labels
No labels