关闭 leksah 中的警告

发布于 2024-12-23 12:32:51 字数 199 浏览 2 评论 0原文

出于充分的理由,我想暂时关闭有关 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

年华零落成诗 2024-12-30 12:32:51

仅在单个文件中禁用警告比在整个项目中禁用警告要好得多。
使用pragma。

{-# OPTIONS_GHC -fno-warn-missing-signatures #-}

在文件顶部

It is much better to disable warnings only in a single file than in whole project.
Use

{-# OPTIONS_GHC -fno-warn-missing-signatures #-}

pragma on the top of a file.

恍梦境° 2024-12-30 12:32:51

将所需的选项添加到 cabal 文件中:

ghc-options: -fno-warn-missing-signatures

Add the desired option to the cabal file:

ghc-options: -fno-warn-missing-signatures

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文