diff --git a/CHANGELOG.md b/CHANGELOG.md index 72bde13..f4c7170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.3.4](https://github.com/nix-community/vscode-nix-ide/compare/v0.3.3...v0.3.4) (2024-09-10) + + +### Features + +* add setting to suppress error notifications ([4913819](https://github.com/nix-community/vscode-nix-ide/commit/4913819384f2fe70e15ea7c814a739926a5d1280)) + ### [0.3.3](https://github.com/nix-community/vscode-nix-ide/compare/v0.3.2...v0.3.3) (2024-08-02) diff --git a/package.json b/package.json index 21338e7..e6f3005 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "nix-ide", "displayName": "Nix IDE", "description": "Nix language support - syntax highlighting, formatting, and error reporting.", - "version": "0.3.3", + "version": "0.3.4", "publisher": "jnoortheen", "icon": "images/icon.png", "license": "MIT", @@ -98,11 +98,16 @@ }, "nix.hiddenLanguageServerErrors": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [], "description": "Error notifications from the language server for these request types will be suppressed.", "examples": [ - [ "textDocument/definition", "textDocument/documentSymbol" ] + [ + "textDocument/definition", + "textDocument/documentSymbol" + ] ] } }