Skip to content

Commit

Permalink
Merge pull request #103 from mghdotdev/102-fix-global-variable-encodi…
Browse files Browse the repository at this point in the history
…ng-diagnostic-warning

102 fix global variable encoding diagnostic warning
  • Loading branch information
mghdotdev authored May 23, 2024
2 parents 1da1408 + 9580aab commit 191f691
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Miva IDE CHANGELOG

## v1.19.0 (latest)
## v1.19.1 (latest)

* Fixed global variable encoding diagnostic warning for local variables starting with `global` ([#102](https://github.com/mghdotdev/vscode-miva-ide/issues/102)).

## v1.19.0

* Added document link feature for `MvINCLUDE` tags within Miva Script.

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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-miva-ide",
"displayName": "Miva IDE",
"description": "Syntax highlighting, snippets and tools for building websites with Miva.",
"version": "1.19.0",
"version": "1.19.1",
"engines": {
"vscode": "^1.77.0",
"node": ">=16"
Expand Down
2 changes: 1 addition & 1 deletion server/src/data/MVT/validation.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
}
},
{
"match": "(?<=&)mvt(?=:global)",
"match": "(?<=&)mvt(?=:global:)",
"matchIndex": 0,
"checkSetting": "MVT.lint.showWarningForUnencodedVariables",
"problem": {
Expand Down

0 comments on commit 191f691

Please sign in to comment.