Home > Software design >  How to disable html validator in vscode
How to disable html validator in vscode

Time:08-02

enter image description here

Error message: Button type should be 'button', 'reset', or 'submit'.

I use angular and don't want it to show me an error

CodePudding user response:

You van use Angular2-Inline plugin. Or maybe Angular Language Service plugin.

CodePudding user response:

Add the below code in the setting.json file in VS Code and restart it

"html.validate.scripts": false

here you go for the setting.json file

Menu File → Preferences → Settings

  • Related