I have use autopep8 to check my Python error & warning in VS Code, and config the "Go to Next Problem in Files" to fast jump to the next one.
One day, I added one html file, found that the error list is long.
I do not care the html's error, cuz it is just test files. How can I avoid them?
CodePudding user response:
I found one solution is that disable the HTML>Validate. Then the errors just from Python.
CodePudding user response:
You could head to the settings.json and add this which will ignore validations in HTML files:
"html.validate.scripts": false,