英文:
How to configure spotless google formatter to format braces
问题
如何配置Spotless Google格式化程序,以将大括号格式化为2行而不是单行
- void contextLoads() {}
+ void contextLoads() {
+ }
英文:
How to configure spotless google formatter to format braces in 2 lines instead of a single line
- void contextLoads() {}
+ void contextLoads() {
+ }
答案1
得分: 1
你无法。来自google-java-format
的README:
注意:对于格式化的算法,没有可配置性。这是一个有意的设计决策,以便在单一格式上统一我们的代码格式。
英文:
You can't. From google-java-format
's README:
> Note: There is no configurability as to the formatter's algorithm for formatting. This is a deliberate design decision to unify our code formatting on a single format.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论