mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This makes sure that folks who use clang-tidy see consistent code analysis reports. This is especially helpful for those using IDEs with clang-tidy integration. The config file is based on the LLVM `.clang-tidy` file: https://github.com/llvm/llvm-project/blob/main/.clang-tidy
15 lines
294 B
YAML
15 lines
294 B
YAML
# See https://clang.llvm.org/extra/clang-tidy/checks/list.html
|
|
|
|
Checks: '
|
|
-*,
|
|
llvm-*,
|
|
misc-*,
|
|
-misc-const-correctness,
|
|
-misc-unused-parameters,
|
|
-misc-non-private-member-variables-in-classes,
|
|
-misc-no-recursion,
|
|
-misc-use-anonymous-namespace,
|
|
-readability-qualified-auto,
|
|
-llvm-qualified-auto
|
|
'
|