endsnippet
snippet clangformat "Disable clang-format"
-// clang-format: off
+// clang-format off
${VISUAL}${0}
-// clang-format: on
+// clang-format on
+endsnippet
+
+snippet nolintnl "Disable clang-tiny diagnostic on next line" b
+//NOLINTNEXTLINE(${0})
+endsnippet
+
+snippet nolint "Disable clang-tiny diagnostic"
+NOLINT(${0})
endsnippet