要检查我的包的代码质量,我正在使用包lintr使用命令
lintr::lint_package()
并得到一个我想忽略的结果:
函数的圈复杂度应小于 15
如何忽略cyclocomp_linter
文件(行号范围)的单个 lintr ( ) 的单个“误报”lintr 结果?
编辑 1:目前我正在使用这个.lintr
配置文件作为解决方法(通过完全禁用 lintr):
linters: with_defaults(
cyclocomp_linter = NULL # instead of NULL I could use: cyclocomp_linter(16)
)