Eclipse 代码格式化程序:空块中的间距
我将 Eclipse 代码格式化程序配置为在一行中显示空块的括号。现在我的项目 checkstyle 配置需要这些括号之间有间距。是否可以告诉 Eclipse 这样做。
例如: emptyMethod() { }
感谢您的帮助。
i configured the eclipse code formatter to display an empty block's brackets in one line. Now my projects checkstyle configuration requires spacing between these brackets. Is it possible to tell Eclipse to do this.
e.g.: emptyMethod() { }
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Eclipse 格式化程序无法在大括号之间添加空格。
作为解决方法,我从 checkStyle 插件配置中删除了“WhitespaceAround”规则。
As far as I know there is no way to put a space between the braces with the Eclipse formatter.
As a workaround I removed the "WhitespaceAround" rule from the checkStyle plugin configuration.