我正在使用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": {}
}
软件包:
有人知道任何解决方法吗?
答案 0 :(得分:0)
我通过使用flag找到了解决方法。 但我不确定这是不是最好的方式。
{/* tslint:disable: comment-format */}
<a href="https://www.google.co.jp">https://www.google.co.jp</a>
{/* tslint:enable: comment-format */}