sort-deriving-clauses
Description | Whether to sort deriving clauses |
---|---|
Type | Bool |
Default | false |
Ormolu | false |
Since | Unreleased |
This option determines whether to sort deriving clauses.
Note that using this option may cause comments between deriving clauses to be misplaced.
Examples
newtype A = A Int
deriving (ToJSON)
deriving stock (Show, Eq, Ord, Generic)
deriving newtype (Num)
newtype A = A Int
deriving newtype (Num)
deriving (ToJSON)
deriving stock (Show, Eq, Ord, Generic)
For more examples, see the test files.