Skip to content

Commit

Permalink
v2023.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Jul 2, 2023
1 parent 4e0d7e6 commit d539163
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [2023.7.2] - 2023-07-02

- Replace `djlint.languages` with `djlint.formatLanguages` and language-overridable `djlint.enableLinting` and `djlint.profile`.
- Add logging via VS Code output channels.
- Improve error handling and overall stability.

## [2023.7.1] - 2023-07-01

- Remove `--profile` for `html` language ID in `djlint.languages` setting.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "djlint",
"displayName": "djLint",
"description": "HTML template formatter and linter (Django, Jinja, Nunjucks, Twig, Handlebars, Mustache)",
"version": "2023.7.1",
"version": "2023.7.2",
"publisher": "monosans",
"license": "MIT",
"homepage": "https://github.com/monosans/djlint-vscode",
Expand Down Expand Up @@ -165,7 +165,7 @@
"mustache",
"html"
],
"description": "Language IDS for which djLint should be registered as a formatter."
"description": "Language IDs for which djLint should be registered as a formatter."
},
"djlint.formatJs": {
"type": "boolean",
Expand All @@ -178,7 +178,7 @@
"type": "string"
},
"default": [],
"description": "Codes to ignore."
"description": "Codes to ignore. Requires djLint ≥ 0.1.5."
},
"djlint.ignoreBlocks": {
"type": "array",
Expand Down Expand Up @@ -295,17 +295,17 @@
"djlint.requirePragma": {
"type": "boolean",
"default": false,
"description": "Only format or lint files that start with a comment with the text 'djlint:on'."
"description": "Only format or lint files that start with a comment with the text 'djlint:on'. Requires djLint ≥ 0.5.8."
},
"djlint.useEditorIndentation": {
"type": "boolean",
"default": true,
"description": "Get the number of indent spaces from VS Code (see the editor.tabSize setting). Disable to get it from the djLint config file."
"description": "Get the number of indent spaces from VS Code (see the editor.tabSize setting). Disable to get it from the djLint config file. Requires djLint ≥ 0.4.3."
},
"djlint.useGitignore": {
"type": "boolean",
"default": false,
"description": "Use .gitignore file to extend excludes."
"description": "Use .gitignore file to extend excludes. Requires djLint ≥ 0.5.9."
},
"djlint.useNewLinterOutputParser": {
"type": "boolean",
Expand Down

0 comments on commit d539163

Please sign in to comment.