VS Code: BracketPair Settings: excludedLanguages is not an array

Viewed 1629

In VS Code, I keep getting the pop up message:

BracketPair Settings: excludedLanguages is not an array Source: Null Extension Description (Extension)

How do I silent it? The plugin Bracket Pair Colorizer 2 is not installed.

2 Answers

Restarting my VSCode after uninstalling the plugin fixed it for me.

After uninstalling the plugin, check your settings.json and remove the bracketPair configuration:

{
    "editor.bracketPairColorization.enabled": true,
    "editor.guides.bracketPairs":"active"
}

Then, restart your VSCode as @MattSlater mentioned.

Related