我们如何在vscode中忽略html行进行验证?

时间:2018-10-11 16:54:48

标签: visual-studio-code mustache

我们如何忽略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>
  ...

0 个答案:

没有答案