llvm-project/clang-tools-extra/test/clang-tidy
Alexis Murzeau d4cb6c2082 [clang-tidy] readability-identifier-naming: fix hungarian enum prefix in C
When checking a C file, enum tags are of type `int` instead of the enum
type as in C++.
So the checker was using `i` as the prefix for enum tags instead of main
letters of the enum type name (for example `rt` for `enum REV_TYPE`).

This commit fixes this divergence and makes the behavior the same between
C and C++ files.

For example, `enum REV_TYPE { rtRevValid };` won't be reported as badly
named when in a C file. Previously, it would have proposed a rename to
`iRevValid`.

This commit also add a file to test the hungarian notation checker with C
files.
The test file was made from identifier-naming-hungarian-notation.cpp
with C++-only features removed.

Reviewed By: carlosgalvezp

Differential Revision: https://reviews.llvm.org/D144912
2023-03-19 06:22:16 +00:00
..
checkers [clang-tidy] readability-identifier-naming: fix hungarian enum prefix in C 2023-03-19 06:22:16 +00:00
infrastructure [clang-tidy] Introduce HeaderFileExtensions and ImplementationFileExtensions options 2023-02-19 13:44:11 +00:00
check_clang_tidy.py [clang-tidy] allow tests to use --config-file instead of --config 2023-02-20 19:06:45 +00:00
CTTestTidyModule.cpp Reland "enable plugins for clang-tidy" 2022-02-01 17:37:24 -05:00