The root of this issue could be attributed to the recent addition of the vscode tool called GitHub Copilot
.
To address this, you should make adjustments to your settings.json
as shown below...
// Specify rules based on language
"[javascript]": {
"editor.autoClosingBrackets": "always"
}
This problem arises because the new GitHub Copilot
is capable of overwriting certain settings within the settings.json
file. To regain control from the GitHub Copilot
extension, it's necessary to define specific regulations such as editor.autoClosingBrackets
at a per lang level.