From 56cabf48a8a0c58e683b531453266f92c0ed6ca5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 27 Jan 2020 01:09:20 +0100 Subject: [PATCH] Add clang-tidy exceptions for http_method. --- include/curl_wrapper.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/curl_wrapper.hpp b/include/curl_wrapper.hpp index f72847e..7674478 100644 --- a/include/curl_wrapper.hpp +++ b/include/curl_wrapper.hpp @@ -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) }; /*!