在lintr中禁用`object_name_linter`

问题描述 投票:1回答:1

我想在我们的项目中介绍lintr。不幸的是,我们的变量命名可以改进,我们实际上决定使用CamelCase用于函数和camelCase用于变量。这使lintr非常不高兴,我试图使用with_defaults(object_name_linter = NULL)禁用linter,但我没有成功。我使用技术成功禁用了其他短绒。

如何通过q​​azxswpoi禁用(或允许多种样式)object_name_linter中的lintr

我在版本1.0.3,如果我运行

.lintrc

它似乎工作。

r configuration lint
1个回答
0
投票

我想我发现了我的问题,我查看了GitHub上的源代码,并认为我需要设置

lint(fileName, with_defaults(camel_case_linter = NULL, snake_case_linter = NULL ))

在1.0.3中,object_name_linter = NULL似乎尚未实施

object_name_linter

诀窍。

© www.soinside.com 2019 - 2024. All rights reserved.