Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git项目的代码分析我不得不从代码分析中排除几行代码我能做到吗?Codacy 有自己的注释吗?(例如@SkipLine)
//需要拐杖进行代码分析
目前,codacy 没有注解跳过行,但是 codacy 运行的 linter 分析代码,如果它们支持注解忽略行,你可以使用它,它们将在分析过程中被忽略。例如,Codacy 在幕后运行 eslint,因此如果您希望忽略特定行中的某些特定模式,您可以这样做:
const res = eval('42'); // eslint-disable-line no-eval