mirror of
https://github.com/github/codeql.git
synced 2025-12-30 07:36:34 +01:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
/**
|
|
* @name Complex inline code
|
|
* @description Embedding complex inline code makes .aspx pages more difficult to maintain.
|
|
* @kind problem
|
|
* @problem.severity warning
|
|
* @precision low
|
|
* @id cs/asp/complex-inline-code
|
|
* @tags maintainability
|
|
* frameworks/asp.net
|
|
*/
|
|
|
|
import semmle.code.asp.AspNet
|
|
|
|
from AspCode code
|
|
where code.getBody().matches("%\n%")
|
|
select code, "Inline code contains multi-line logic."
|