You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
636 B
25 lines
636 B
7 months ago
|
Index:
|
||
|
Background: Build
|
||
|
|
||
|
CompileFlags:
|
||
|
Add: [-xc++, -Wall, -std=c++20]
|
||
|
Compiler: clang++
|
||
|
|
||
|
Diagnostics:
|
||
|
ClangTidy:
|
||
|
Add: ["*"]
|
||
|
Remove: [
|
||
|
abseil*,
|
||
|
fuchsia*,
|
||
|
llvmlib*,
|
||
|
zircon*,
|
||
|
altera*,
|
||
|
google-readability-todo,
|
||
|
readability-braces-around-statements,
|
||
|
hicpp-braces-around-statements,
|
||
|
modernize-use-trailing-return-type, # 不要每个都加上尾返回值类型
|
||
|
readability-identifier-length, # 不检查变量名长度
|
||
|
; cppcoreguidelines-avoid-magic-numbers, # 不检查魔法数字
|
||
|
; readability-magic-numbers, #同上
|
||
|
]
|