commercialhaskell / stack-ide

Stack-based JSON interface to ide-backend
98 stars 23 forks source link

Should stack-mode disable default flycheckers? #84

Closed lukehoersten closed 7 years ago

lukehoersten commented 8 years ago

I use this in my mode hook to disable the default flycheckers which are redundant and interfere with the stack-ide flycheckers. Should we perhaps bake this logic into stack-mode a bit more?

   (flycheck-mode t)
   (flycheck-disable-checker 'haskell-ghc)
   (flycheck-disable-checker 'haskell-stack-ghc)
   (flycheck-clear t)
   (stack-mode t)
cocreature commented 8 years ago

Imho this should maybe be added to the documentation but I don't like the idea of messing with the configuration the user has set.

lukehoersten commented 8 years ago

Agreed. I'll add it to the docs.

lukehoersten commented 7 years ago

Deprecated