src/CC/Config.hs
Use newtype instead of data Open
Open
data Config = Config { configIncludes :: [FilePath] }
- Read upRead up
- Exclude checks
Found
data Config = Config {configIncludes :: [FilePath]}
Perhaps
newtype Config = Config {configIncludes :: [FilePath]}
Applying this change:
- decreases laziness