mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
/**
|
|
* @name Commented-out code
|
|
* @description Commented-out code makes the remaining code more difficult to read.
|
|
* @kind problem
|
|
* @problem.severity recommendation
|
|
* @precision high
|
|
* @id cpp/commented-out-code
|
|
* @tags maintainability
|
|
* documentation
|
|
*/
|
|
|
|
import CommentedOutCode
|
|
|
|
from CommentedOutCode comment
|
|
select comment, "This comment appears to contain commented-out code."
|