关闭 leksah 中的警告
出于充分的理由,我想暂时关闭有关 leksah IDE 中缺少类型级别签名的警告。
我将标志更改为 ghc cabal 文件,当我从控制台运行“cabal install”时,警告不存在。
但是,如果我在 leksah IDE 中构建相同的项目,仍然会显示警告。
如何在 leksah IDE 中关闭“警告:没有类型签名的顶级绑定:”?
For a good reason, I want to temporally turn of the warnings about the missing type level signature in the leksah IDE.
I changed the flags to ghc cabal file and the warnings are absent when I run "cabal install" from the console.
However, if I build the same project in the leksah IDE, the warnings are still shown.
How can I turn off "Warning: Top-level binding with no type signature:" in the leksah IDE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅在单个文件中禁用警告比在整个项目中禁用警告要好得多。
使用pragma。
在文件顶部
It is much better to disable warnings only in a single file than in whole project.
Use
pragma on the top of a file.
将所需的选项添加到 cabal 文件中:
ghc-options: -fno-warn-missing-signatures
Add the desired option to the cabal file:
ghc-options: -fno-warn-missing-signatures