Say, I have a bunch of .cc source files with statements like
using namespace lib::a;
using namespace lib::d;
using namespace lib::c;
using namespace lib::b;
I want them to be sorted
using namespace lib::a;
using namespace lib::b;
using namespace lib::c;
using namespace lib::d;
using a .clang-format file.
Is there a key value pair to achieve this? I know that this works for header files, but I have not seen it for sorting namespaces.