You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When enabling Smart Mode with JetBrains Fleet, projects with this plugin applied fail due to the expectation that the .idea directory will exist:
java.io.FileNotFoundException: /home/coder/Projects/bb/edge/edgezuul/.idea/palantir-java-format.xml (No such file or directory)
at com.google.common.io.Files.newWriter(Files.java:110)
at com.palantir.javaformat.gradle.PalantirJavaFormatIdeaPlugin.updateIdeaXmlFile(PalantirJavaFormatIdeaPlugin.java:132)
at com.palantir.javaformat.gradle.PalantirJavaFormatIdeaPlugin.createOrUpdateIdeaXmlFile(PalantirJavaFormatIdeaPlugin.java:108)
at com.palantir.javaformat.gradle.PalantirJavaFormatIdeaPlugin.lambda$configureIntelliJImport$8(PalantirJavaFormatIdeaPlugin.java:87)
at org.gradle.internal.code.DefaultUserCodeApplicationContext$CurrentApplication$1.execute(DefaultUserCodeApplicationContext.java:122)
That's not the case with Fleet, but it is technically an IntelliJ import because that's what the smart mode backend is hosting.
What did you want to happen?
Avoid failing when the .idea directory does not exist. Workaround is to mkdir .idea.
The text was updated successfully, but these errors were encountered:
What happened?
When enabling Smart Mode with JetBrains Fleet, projects with this plugin applied fail due to the expectation that the
.idea
directory will exist:That's not the case with Fleet, but it is technically an IntelliJ import because that's what the smart mode backend is hosting.
What did you want to happen?
Avoid failing when the
.idea
directory does not exist. Workaround is tomkdir .idea
.The text was updated successfully, but these errors were encountered: