Checkstyle 的 TrailingComment 模块将以下内容检测为第 001 行中的无效尾随注释:
000 private native void doSomething()/*-{
001 .. javascript code here ..
002 }-*/
这当然是对的,但我想配置legalComment以忽略它们。这是一个正则表达式,我希望“ -\{
”可以解决问题。它没有……有人遇到同样的问题吗?
Checkstyle 的 TrailingComment 模块将以下内容检测为第 001 行中的无效尾随注释:
000 private native void doSomething()/*-{
001 .. javascript code here ..
002 }-*/
这当然是对的,但我想配置legalComment以忽略它们。这是一个正则表达式,我希望“ -\{
”可以解决问题。它没有……有人遇到同样的问题吗?