'How to remove editor match bracket lines in VS Code?

I want to remove the distracting match bracket lines below.

enter image description here

The settings that I have used so far are:

{
    "editor.renderLineHighlight": "none",
    "editor.matchBrackets": "never"
}


Solution 1:[1]

Thank rioV8 for your comments.

Add the following settings:

"bracketPairColorizer.showHorizontalScopeLine": false,
"bracketPairColorizer.showVerticalScopeLine": false

Solution 2:[2]

On a similar issue:

Below is what I was looking for (removes vertical lines on left):

File: settings.json

Setting:

"editor.guides.indentation": false

Old that does not work anymore:

"editor.renderIndentGuides": false

More details: https://code.visualstudio.com/docs/getstarted/userinterface#_indent-guides

Solution 3:[3]

This worked for me:-

  1. open settings.json CTRL + SHIFT + P and type "Open Settings (JSON)"

  2. paste the following code at the bottom:-

    "editor.bracketPairColorization.enabled": true,
    "editor.guides.bracketPairs": "active",
    "editor.matchBrackets": "near",
    "editor.guides.highlightActiveBracketPair": false,
    

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Intellectual Gymnastics Lover
Solution 2 Manohar Reddy Poreddy
Solution 3 ssbrar