如何在 React JSX 文件中插入 TODO 注释
How to insert TODO comment in React JSX file
我想在 React JSX 文件上插入 TODO 注释,常规 JavaScript 注释被解析为文本并在我的组件 PhpStorm 中呈现,在 TODO 工具中列出它们 window
// TODO any comments ...
or
/* TODO an other todo task*/
以防我像这样使用 JSX 注释
{/* TODO an other todo task*/}
PhpStorm 忽略 TODO 并将其视为简单的注释,有一种方法可以在 React JSX 文件中插入带有 PhpStorm 的 TODO,或者 PhpStorm 缺少对 React 的支持,需要增强。
与WEB-23401相似,请关注更新
use the below comment it worked for me writing todo's
/**
@todo: right your todo comment here
**/
我想在 React JSX 文件上插入 TODO 注释,常规 JavaScript 注释被解析为文本并在我的组件 PhpStorm 中呈现,在 TODO 工具中列出它们 window
// TODO any comments ...
or
/* TODO an other todo task*/
以防我像这样使用 JSX 注释
{/* TODO an other todo task*/}
PhpStorm 忽略 TODO 并将其视为简单的注释,有一种方法可以在 React JSX 文件中插入带有 PhpStorm 的 TODO,或者 PhpStorm 缺少对 React 的支持,需要增强。
与WEB-23401相似,请关注更新
use the below comment it worked for me writing todo's
/**
@todo: right your todo comment here
**/