patch: test
Some checks failed
/ Checkstyle job (pull_request) Failing after 12s

This commit is contained in:
筱锋xiao_lfeng 2024-04-10 02:09:00 +08:00
parent 7035ad0104
commit fecda5d504
Signed by: XiaoLFeng
GPG Key ID: F693AA12AABBFA87

View File

@ -13,6 +13,12 @@
<property name="max" value="1500"/>
</module>
<!-- 长度检查 -->
<!-- 每行不超过140个字符 -->
<module name="LineLength">
<property name="max" value="120" />
</module>
<!-- 每个java文件一个语法树 -->
<module name="TreeWalker">
<!-- import检查-->
@ -62,11 +68,6 @@
<!-- 检查long型定义是否有大写的“L” -->
<module name="UpperEll"/>
<!-- 长度检查 -->
<!-- 每行不超过140个字符 -->
<module name="LineLength">
<property name="max" value="140" />
</module>
<!-- 方法不超过50行 -->
<module name="MethodLength">
<property name="tokens" value="METHOD_DEF" />