You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VS Code uses a special dialect of JSON for it's configuration files that supports comments and trailing comma. This extension tries to parse such files triggering JSON parsing errors when they contain such elements. This extension should not generate such errors, maybe even ignoring such files in the first place.
To reproduce:
Open VS Code settings.json, and have a trailing comma in the top level JSON object. This is valid in VS Code, but this extension tries to parse it and raises errors about it.
The text was updated successfully, but these errors were encountered:
segevfiner
changed the title
Extensions triggers errors on VS Code json files
Triggers errors on VS Code json files
Sep 30, 2020
VS Code uses a special dialect of JSON for it's configuration files that supports comments and trailing comma. This extension tries to parse such files triggering JSON parsing errors when they contain such elements. This extension should not generate such errors, maybe even ignoring such files in the first place.
To reproduce:
settings.json
, and have a trailing comma in the top level JSON object. This is valid in VS Code, but this extension tries to parse it and raises errors about it.The text was updated successfully, but these errors were encountered: