qr 指定 使用指定路径的.clang-tidy 配置文件
时间: 2023-11-04 14:04:21 浏览: 220
适合clangformat的配置文件
要指定使用指定路径的.clang-tidy配置文件,你可以使用以下命令:
```
clang-tidy <source-file> -config=<path-to-config-file>
```
其中,`<source-file>`是你要分析的源文件,`<path-to-config-file>`是你指定的.clang-tidy配置文件的路径。
例如,如果你要分析名为`example.cpp`的源文件,并使用`/path/to/.clang-tidy`路径下的配置文件,你可以使用以下命令:
```
clang-tidy example.cpp -config=/path/to/.clang-tidy
```
这将使用指定的配置文件来分析源文件,并给出相应的检查结果。
希望这个答案对你有所帮助。
阅读全文