用checkoptions的方式呢
时间: 2023-08-18 14:06:20 浏览: 46
WITH CHECK OPTION的用法
5星 · 资源好评率100%
可以使用`-check-option`命令行选项为`readability-identifier-naming.FunctionCase`检查器设置参数。例如,要将函数名设置为小写字母和下划线方式,可以使用以下命令行选项:
```
-check-option=readability-identifier-naming.FunctionCase.WarnAboutFunctionCase=false -check-option=readability-identifier-naming.FunctionCase.AllowCapitalizedAbbreviations=true
```
上述命令行选项将`WarnAboutFunctionCase`参数设置为false,这表示将不会检查函数名的大小写规范,同时将`AllowCapitalizedAbbreviations`参数设置为true,这表示允许在函数名中使用大写缩写。这两个参数的组合将允许函数名使用小写字母和下划线,而不是驼峰命名法。
如果要设置其他的检查器参数,可以按照上述示例为`readability-identifier-naming`检查器族中的其他检查器添加类似的`-check-option`选项。
阅读全文