Is there a way to guide the formatter to not touch part of the C++ code in Visual Studio Code? For example:
// FORMAT THIS PART
int a;
// DON'T TOUCH THIS PART
std::map<int, std::set<int>> m = {
{1, {2, 3, 4}},
{2, {3, 4, 5}}
};
// END OF DON'T TOUCH THIS PART