Add clang-tidy exceptions for http_method.

This commit is contained in:
tastytea 2020-01-27 01:09:20 +01:00
parent 4dc7dbb4e6
commit 56cabf48a8
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 5 additions and 5 deletions

View File

@ -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)
};
/*!