hspretty-0.1.0.0: src/RunMode.hs
-- |
-- Description : Run mode: check only or format.
module RunMode
( RunMode (CheckOnly, Format),
)
where
-- | Running mode: are we only checking, or also formatting?
data RunMode
= -- | Only check files (read only).
CheckOnly
| -- | Format files (read and write).
Format