如何在checkstyle中编写自定义检查?

发布于 2024-12-05 10:52:31 字数 113 浏览 0 评论 0原文

我想为 checkstyle 编写一个自定义检查。

我想要合作的规则是 类应该定义一个构造函数 - 但禁止内部类的此规则

我应该如何编写此检查。

I want to write a custom check for checkstyle.

my rule that i want to work with is
Class should define a constructor- but Suppress this rule for inner classes

how should i go about writing this check.

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

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

发布评论

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

评论(1

十年不长 2024-12-12 10:52:31

您可以通过扩展 com.puppycrawl.tools.checkstyle.api.Check 类来创建自定义 CheckStyle 检查,然后为此项目创建一个 jar 并指向 CheckStyle 来使用它。我在这里写了一个例子:

http://blog.blundellapps .co.uk/create-your-own-checkstyle-check/

和源代码:

https://github.com/blundell/CreateYourOwnCheckStyleCheck

You can create a custom CheckStyle check by extending the com.puppycrawl.tools.checkstyle.api.Check class, you then create a jar for this project and point CheckStyle to use it. I've written an example here:

http://blog.blundellapps.co.uk/create-your-own-checkstyle-check/

and source code here:

https://github.com/blundell/CreateYourOwnCheckStyleCheck

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