I use clang-format to get my C++ code into a Google-based style. And I use my modified-cpplint.py to check my format. Here's my format settings in Sublime Text 3:
{
"BasedOnStyle" : "Google",
"IndentWidth" : 4,
"ColumnLimit" : 120,
"AlignConsecutiveAssignments" : true
}
After format my code turns into this way. And cpplint told me that "Weird number of spaces at line-start. Are you using a 4-space indent?" How can I fix it?