파일

.git-blame-ignore-revs에 있는 리비전을 무시합니다. 일반 blame 보기를 보려면 여기를 클릭하여 우회하세요.

43 라인
1.2 KiB
YAML
Raw 고유링크 일반 보기 히스토리

CompileFlags:
Remove: -W*
Add: [-Wall, -Wno-c++20-designator, -pedantic, -Wno-sign-conversion]
Compiler: clang++
# list here: https://clang.llvm.org/extra/clang-tidy/checks/list.html
Diagnostics:
UnusedIncludes: Strict
# rules below are copied into .clang-tidy using ./.update-clang-tidy.sh
# please keep the rules sorted alphabetically
ClangTidy:
Add: [
bugprone*,
clang-analyzer*,
google*,
misc*,
modernize*,
]
Remove: [
abseil*,
bugprone-easily-swappable-parameters,
bugprone-reserved-identifier,
cppcoreguidelines*,
cppcoreguidelines-pro*,
2025-07-14 19:08:11 -05:00
google-readability*,
google-runtime-int,
misc-const-correctness,
misc-include-cleaner,
misc-non-copyable-objects,
misc-unused-parameters,
misc-use-anonymous-namespace,
modernize-avoid-c-arrays,
modernize-redundant-void-arg,
modernize-use-auto,
modernize-use-nodiscard,
modernize-use-noexcept,
modernize-use-nullptr,
modernize-use-trailing-return-type,
modernize-use-using,
performance*,
readability*,
]