TSLint如何允许注释格式规则的URL?

时间:2017-07-13 13:10:46

标签: typescript tslint

我正在使用TypeScript和React以及带注释格式规则的TSLint。

现在我得到一个奇怪的警告,评论格式规则不允许JSX中的URL。

示例代码:

<a href="https://www.google.co.jp">https://www.google.co.jp</a>

警告:

comment must start with a space

tslint.json:

{
  "extends": ["tslint:latest", "tslint-react"],
  "rules": {}
}

软件包:

  • “typescript”:“^ 1.8.10”
  • “tslint”:“^ 3.15.1”
  • “tslint-react”:“^ 1.0.0”

有人知道任何解决方法吗?

1 个答案:

答案 0 :(得分:0)

我通过使用flag找到了解决方法。 但我不确定这是不是最好的方式。

{/* tslint:disable: comment-format */}
<a href="https://www.google.co.jp">https://www.google.co.jp</a>
{/* tslint:enable: comment-format */}