atom-haskell-archive / haskell-ghc-mod

haskell-ghc-mod atom package
https://atom.io/packages/haskell-ghc-mod
MIT License
69 stars 20 forks source link

Question: project local config #232

Closed diminutivesloop closed 6 years ago

diminutivesloop commented 6 years ago

I’m trying to suppress errors for a specific project so I followed the instructions here and added a .haskell-ghc-mod.json file to the root of my project with the following contents:

{
  "ghcOptions": ["-fno-warn-unused-do-bind", "-fno-warn-missing-signatures"]
}

However even after reloading Atom I’m still seeing warnings for unused bindings and missing signatures.

diminutivesloop commented 6 years ago

Whoops never mind. Guess I was using the wrong option flag for suppressing unused binding warnings.