I am using TypeScript and React and TSLint with comment-format rule.
now I got a weird warning that the comment-format rule doesn't allow URL in the JSX.
sample code here:
<a href="https://www.google.co.jp">https://www.google.co.jp</a>
warning here:
comment must start with a space
tslint.json here:
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {}
}
packages:
- "typescript": "^1.8.10"
- "tslint": "^3.15.1"
- "tslint-react": "^1.0.0"
Anyone know any workaround for that?