Scala 有类似 ReSharper 的代码重新格式化和清理工具吗?
我想自动清理并重新格式化 Scala 代码文件,就像在 Visual Studio for C# 中使用 ReSharper 所做的那样。我可以使用 IntelliJ Idea 或其他工具来完成此操作吗?
I'd like to automatically clean-up and reformat a Scala code file the way I can do with ReSharper in Visual Studio for C#. Can I do this with IntelliJ Idea or another tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IntelliJ Idea 通过 scala 插件 提供了强大的 scala 支持。
可以通过以下方式从菜单访问重新格式化代码:
Code
>>>重新格式化代码
。事实上,re-sharper是JetBrains(Idea的作者)的产品
IntelliJ Idea has great scala support, via the scala plugin.
Reformating code can be accessed from the menu through:
Code
>>Reformat Code
.In fact, re-sharper is a product from JetBrains (authors of Idea)
使用
代码
| IntelliJ IDEA 中的Reformat code
操作,当您安装了 Scala 插件时,它也适用于 Scala。Use
Code
|Reformat code
action in IntelliJ IDEA, it works for Scala as well when you have Scala plug-in installed.