We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e975c1b commit a182b64Copy full SHA for a182b64
plugins/hls-fourmolu-plugin/src/Ide/Plugin/Fourmolu.hs
@@ -93,7 +93,10 @@ provider recorder plId ideState typ contents fp fo = ExceptT $ withIndefinitePro
93
errorMessage = "Failed to load " <> T.pack f <> ": " <> T.pack (show err)
94
95
let config =
96
- refineConfig ModuleSource Nothing Nothing Nothing defaultConfig
+#if MIN_VERSION_fourmolu(0,13,0)
97
+ refineConfig ModuleSource Nothing Nothing Nothing
98
+#endif
99
+ defaultConfig
100
{ cfgDynOptions = map DynOption fileOpts
101
, cfgFixityOverrides = cfgFileFixities
102
, cfgRegion = region
0 commit comments