标签: command-line-interface pmd
如何使PMD不计算仅包含大括号的行?例如:
public static void countMyLines() { int a = 1; int b = 2; System.out.println("result: "+(a+b)); } // don't count this line
我正在使用CLI检查我的项目。