We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d058eb commit 03cb67cCopy full SHA for 03cb67c
Sources/SwiftSyntax/JSONDiagnosticConsumer.swift
@@ -60,7 +60,7 @@ public final class JSONDiagnosticConsumer: DiagnosticConsumer {
60
if FileManager.default.fileExists(atPath: url.path) {
61
try FileManager.default.removeItem(at: url)
62
}
63
- FileManager.default.createFile(atPath: url.path, contents: data)
+ _ = FileManager.default.createFile(atPath: url.path, contents: data)
64
case .stdout:
65
FileHandle.standardOutput.write(data)
66
0 commit comments