+# disable horrible one word snippets
+clearsnippets pri pro pub fr mu t pr
+
snippet once "Include header once only guard"
#ifndef ${1:`!p snip.rv = re.sub(r'[^A-Za-z0-9]+','_', snip.fn).upper()`}
#define $1
${3:/* else */}
}
endsnippet
+
+snippet clangformat "Disable clang-format"
+// clang-format off
+${VISUAL}${0}
+// 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