-1

I'm currently trying to migrate to Visual Studio Code from Adobe Brackets as a text editor becouse my dev team's environment.

I was able to migrate almost all functionalities I use on Adobe Brackets but I couldn't find a way to replace the function that highlight bad or wrong close markup (As in the Bracket's picture that highlight at the end indicates duplicated </div> tag)

enter image description here

Any user of VSC that know if there is a way to achieve this via native or extention feature? I've search around Google, the VSC Marketplace and the App Settings but can't find anything...

Tuux
  • 72
  • 7

1 Answers1

3

Extension: HTMLHint

Rule (which is true by default anyway):

"tag-pair": true
Alex
  • 59,571
  • 22
  • 137
  • 126
  • Thanks alot @Alex, That's exactly what I'm looking for, I found the extension on the marketplace in the past but passed out this rule. – Tuux Nov 08 '17 at 16:09