我正在使用 android studio 和 flutter 插件。它正在使用 dart 格式化程序。我不想要它。
设置中有:
Code is formatted using the dart format tool included with the Dart SDK. See FAQ.
仅此而已。
如何用其他东西代替它?
我正在使用 android studio 和 flutter 插件。它正在使用 dart 格式化程序。我不想要它。
设置中有:
Code is formatted using the dart format tool included with the Dart SDK. See FAQ.
仅此而已。
如何用其他东西代替它?
我相信没有任何方法可以替换 Android Studio 中 Dart 的格式化程序,只能使用 Dart 和 Flutter 插件的设置。您可以使用插件提供的设置做的最好的事情是通过 Settings -> Languages & Frameworks -> Flutter -> Uncheck 禁用保存时的格式
Format code on save
。您可以创建自定义外部工具(请参阅https://www.jetbrains.com/help/idea/settings-tools-external-tools.html)以通过 IDE 中的快捷方式运行脚本。在该脚本中编写自定义格式化逻辑并使用快捷方式运行它。我相信这是您最接近您想要实现的目标。