Merge pull request #7422 from github/todo-comment-kind

Add `kind` metadata to example query.
This commit is contained in:
Chris Gavin 2021-12-16 16:36:15 +00:00 коммит произвёл GitHub
Родитель e3b2eed2d2 4a1e2ed408
Коммит 8fabbd697e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -2,6 +2,8 @@
* @id js/examples/todocomment
* @name TODO comments
* @description Finds comments containing the word TODO
* @kind problem
* @problem.severity recommendation
* @tags comment
* TODO
*/
@ -10,4 +12,4 @@ import javascript
from Comment c
where c.getText().regexpMatch("(?si).*\\bTODO\\b.*")
select c
select c, "TODO comments indicate that the code may not be complete."