Add clang-tidy exceptions for http_method.
This commit is contained in:
parent
4dc7dbb4e6
commit
56cabf48a8
|
@ -39,11 +39,11 @@ using std::string_view;
|
|||
*/
|
||||
enum class http_method
|
||||
{
|
||||
GET,
|
||||
POST,
|
||||
PATCH,
|
||||
PUT,
|
||||
DELETE
|
||||
GET, // NOLINT(readability-identifier-naming)
|
||||
POST, // NOLINT(readability-identifier-naming)
|
||||
PATCH, // NOLINT(readability-identifier-naming)
|
||||
PUT, // NOLINT(readability-identifier-naming)
|
||||
DELETE // NOLINT(readability-identifier-naming)
|
||||
};
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Reference in New Issue
Block a user