mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
/**
|
|
* @name JSX attributes
|
|
* @description Finds JSX attributes named `dangerouslySetInnerHTML`
|
|
* @tags JSX
|
|
* attribute
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from JSXAttribute a
|
|
where a.getName() = "dangerouslySetInnerHTML"
|
|
select a
|