我正在使用EditConfig来强制执行 2 个空格缩进。
root = true
[*]
indent_style = space
indent_size = 2
continuation_indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
我开始使用 cpplint 进行静态分析,一切正常,直到我发现某些规则与我的 EditorConfig 配置发生冲突,我正在尝试禁用此 cpplint 规则”
private: should be indented +1 space inside class
public: should be indented +1 space inside class
帮助说我可以使用过滤器来禁用特定检查,但我可以找到所有可用过滤器的列表。
Example file:
filter=-build/include_order,+build/include_alpha
你知道我需要的过滤器的名称吗?