diff --git a/CHANGELOG.md b/CHANGELOG.md index 0df7d9385..dfeb33101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to the "prettier-vscode" extension will be documented in thi ## [NEXT] - Updated Prettier to 2.3.0 +- Fix mismatch of option name `ignore` in description of HTML Whitespace Sensitivity ([#1941](https://github.com/prettier/prettier-vscode/pull/1941)) ## [6.3.2] diff --git a/package.json b/package.json index ec0065a6d..29e0cdaf5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "prettier-vscode", "displayName": "Prettier - Code formatter", "description": "Code formatter using prettier", - "version": "6.3.2", + "version": "6.3.3", "publisher": "esbenp", "author": "Prettier <@prettiercode>", "galleryBanner": { diff --git a/package.nls.json b/package.nls.json index e18986240..24b72dac9 100644 --- a/package.nls.json +++ b/package.nls.json @@ -9,7 +9,7 @@ "ext.config.disableLanguagesDeprecation": "This feature is no longer supported. Instead, configure VS Code [default formatters](https://github.com/prettier/prettier-vscode#default-formatter) or use .prettierignore.", "ext.config.documentSelectors": "A list of [glob patterns](https://code.visualstudio.com/api/references/vscode-api#GlobPattern) to register Prettier formatter", "ext.config.endOfLine": "Specify the end of line used by prettier", - "ext.config.htmlWhitespaceSensitivity": "Specify the global whitespace sensitivity for HTML files.\n Valid options:\n- `css` - Respect the default value of CSS display property.\n- `strict` - Whitespaces are considered sensitive.\n- `ignores` - Whitespaces are considered insensitive.", + "ext.config.htmlWhitespaceSensitivity": "Specify the global whitespace sensitivity for HTML files.\n Valid options:\n- `css` - Respect the default value of CSS display property.\n- `strict` - Whitespaces are considered sensitive.\n- `ignore` - Whitespaces are considered insensitive.", "ext.config.ignorePath": "Path to a .prettierignore file", "ext.config.insertPragma": "Prettier can insert a special @format marker at the top of files specifying that the file has been formatted with prettier. This works well when used in tandem with the `--require-pragma` option. If there is already a docblock at the top of the file then this option will add a newline to it with the @format marker.", "ext.config.jsxBracketSameLine": "If true, puts the `>` of a multi-line jsx element at the end of the last line instead of being alone on the next line",