我正在使用vim的syntastic plugin,其中一个跳棋phpcs用'style‘错误给我发了垃圾邮件:
错误示例:
Spaces must be used to indent lines; tabs are not allowed
Line indented incorrectly; expected at least 8 spaces, found 2
有没有办法关闭/过滤这些类型的错误,我只对语法错误感兴趣
发布于 2015-11-05 18:42:55
是的,你可以将这个添加到你的.vimrc中:
let g:syntastic_quiet_messages = { "type": "style" }https://stackoverflow.com/questions/31187640
复制相似问题