tool/editor 包围单行 (Java/C#/JS) if 语句,花括号将其保留在同一行

A tool/editor to surround single-line (Java/C#/JS) if statement with curly braces preserving it on the same line

这是我的:

if (something) throw new Exception("whatever");

我想找到一种工具,它可以一次性遍历我的所有代码并将上述语句更改为:

if (something) { throw new Exception("whatever"); }

请注意,我希望所有内容都保持在同一行上(如果是这样的话)。

任何可以完成这项工作的 tool/editor/plugin/script/anything,对我所有的代码来说都是有帮助的。

谢谢。

显然 IntelliJ 可以通过 2 个设置的组合来做到这一点:

  1. 代码风格 > Java > If() 语句 > 强制大括号 > Always
  2. 代码风格 > Java > 重新格式化时保持 > 一行中的简单块