Skip to content

Commit

Permalink
Ignore base collection in checker
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGavin committed Feb 3, 2024
1 parent 3f38e49 commit 06f6946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/check.odin
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ check :: proc(uri: common.Uri, writer: ^Writer, config: ^common.Config) {
collection_builder := strings.builder_make(context.temp_allocator)

for k, v in common.config.collections {
if k == "" || k == "core" || k == "vendor" {
if k == "" || k == "core" || k == "vendor" || k == "base" {
continue
}
strings.write_string(
Expand Down Expand Up @@ -216,7 +216,7 @@ check :: proc(uri: common.Uri, writer: ^Writer, config: ^common.Config) {
uri := common.create_uri(match, context.temp_allocator)

params := NotificationPublishDiagnosticsParams {
uri = uri.uri,
uri = uri.uri,
diagnostics = {},
}

Expand Down

0 comments on commit 06f6946

Please sign in to comment.