skip to Main Content

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


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

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search