如何忽略一些rails_best_practices gem警告?

发布于 2024-12-14 19:19:57 字数 243 浏览 0 评论 0原文

我在我的应用程序中使用 metric_fu 和rails_best_practices gems。但这次我被分配到一个开发了1年多的老项目。

当我使用rails_best_practices gem 生成警告时,我发现了数百个警告。

问题是,我在这数百个警告中找不到自己生成的警告。我现在不想修复所有这些警告。我只想修复新警告并标记旧警告以便将来检查它们。

有什么方法可以忽略这些旧警告吗?

I am using metric_fu and rails_best_practices gems for my applications. But this time I was assigned to an old project that was under development for more than 1 year.

When I used rails_best_practices gem to generate warnings, I found hundreds of warnings.

The problem is that I can't find warnings generated by myself through all these hundreds of warnings. I don't want to fix all these warnings right now. I just want to fix my new warnings and mark the old warnings to check them in the future.

Is there any method to ignore these old warnings?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ぇ气 2024-12-21 19:19:57

是的,您可以忽略这些警告。

运行rails_best_practices -g。这将生成配置文件rails_best_practices.yml

您可以删除或评论一条评论以将其禁用,并且可以更改选项。

您可以通过提供一个正则表达式或正则表达式数组来描述您不想检查的文件的路径,从而在任何规则上应用ignored_files选项:

DefaultScopeIsEvilCheck: { ignored_files: 'user\.rb' }
LongLineCheck: { max_line_length: 80, ignored_files: ['db/migrate', 'config/initializers'] } 

Yes you can ignore the warnings.

Run rails_best_practices -g. This will generate configuration file rails_best_practices.yml.

You can remove or comment one review to disable it, and you can change the options.

You can apply the ignored_files option on any rule by giving a regexp or array of regexps describing the path of the files you don't want to be checked:

DefaultScopeIsEvilCheck: { ignored_files: 'user\.rb' }
LongLineCheck: { max_line_length: 80, ignored_files: ['db/migrate', 'config/initializers'] } 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文