jscs:预期节点列表结束但找到 "CommentBlock"

jscs : Expected end of node list but "CommentBlock" found

JSCS 无法解析我的 ReactJS 组件。 它在页面的第一行出现错误 "Expected end of node list but "CommentBlock" found" :

错误的原因是因为我在我的reactJs组件中注释掉了一行JSX。

<Nav pullRight>
    {/*/<li><Link to='/auth/login' activeClassName='route--active'>login</Link></li>*/}
</Nav>

删除内嵌注释解决了问题。