We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8483c7b commit 969bce9Copy full SHA for 969bce9
plugins/hls-hlint-plugin/src/Ide/Plugin/Hlint.hs
@@ -66,7 +66,8 @@ import System.Environment (setEnv,
66
import Development.IDE.GHC.Compat (DynFlags,
67
extensionFlags,
68
ms_hspp_opts,
69
- topDir)
+ topDir,
70
+ uninterruptibleMaskM_)
71
import qualified Development.IDE.GHC.Compat.Util as EnumSet
72
73
#if MIN_GHC_API_VERSION(9,4,0)
@@ -205,7 +206,7 @@ rules recorder plugin = do
205
206
207
defineNoFile (cmapWithPrio LogShake recorder) $ \GetHlintSettings -> do
208
(Config flags) <- getHlintConfig plugin
- liftIO $ argsSettings flags
209
+ liftIO $ uninterruptibleMask_ $ argsSettings flags
210
211
action $ do
212
files <- Map.keys <$> getFilesOfInterestUntracked
0 commit comments