我们如何忽略vscode中的html行?例如:
...
<style>
body{
font-size:{{fontSize}}px;
}
</style>
...
我对变量使用小胡子,{{fontSize}}显示为警告
我希望能够发表类似的评论
...
<!-- lint: disable -->
<style>
body{
font-size:{{fontSize}}px;
}
</style>
<!-- lint: enable-->
...
或
...
<style>
// lint: disable
body{
font-size:{{fontSize}}px;
}
// lint: enable
</style>
...