This PR changes Gild to simply sort extensions by name. Previously Gild would sort No* extensions after others. If you need this behavior, use multiple default-extensions fields like this:
-- before
default-extensions:
ScopedTypeVariables
NoExplicitForAll
-- after
default-extensions: ScopedTypeVariables
default-extensions: NoExplicitForAll
Fixes #31. Revisits #30 which was a fix for #29.
This PR changes Gild to simply sort extensions by name. Previously Gild would sort
No*
extensions after others. If you need this behavior, use multipledefault-extensions
fields like this: