Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一些 C++ 程序,有时我使用 2 空格缩进而不是 4 空格缩进,但 cpplint 并没有警告我这些行,因为它似乎默认检查 2 空格缩进(我假设它正在处理4 空格缩进作为两个 2 空格缩进)。
当我用 1 个空格缩进一行时,cpplint说:
cpplint
行开头的奇怪数量的空格。您是否使用 2 空格缩进?[空白/缩进] [3]
如何cpplint检查我在程序中是否使用了 4 空格缩进?