Skip to content

Commit 0465e82

Browse files
authored
Merge pull request #1402 from ahoppen/experimental-features-optional
Don’t require `--experimental-feature` to be passed when launching `sourcekit-lsp`
2 parents 0e0594b + 7066784 commit 0465e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/sourcekit-lsp/SourceKitLSP.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ struct SourceKitLSP: AsyncParsableCommand {
205205
Available features are: \(ExperimentalFeature.allCases.map(\.rawValue).joined(separator: ", "))
206206
"""
207207
)
208-
var experimentalFeatures: [ExperimentalFeature]
208+
var experimentalFeatures: [ExperimentalFeature] = []
209209

210210
func mapOptions() -> SourceKitLSPServer.Options {
211211
var serverOptions = SourceKitLSPServer.Options()

0 commit comments

Comments
 (0)