mirror of
https://github.com/github/codeql.git
synced 2026-05-25 00:27:09 +02:00
17 lines
384 B
Plaintext
17 lines
384 B
Plaintext
/**
|
|
* @name Python extraction warnings msft
|
|
* @description List all extraction warnings for Python files in the source code directory.
|
|
* @id py/extractor-error-msft
|
|
* @kind problem
|
|
* @tags security
|
|
* extraction
|
|
*/
|
|
|
|
import python
|
|
|
|
from SyntaxError error, File file
|
|
where
|
|
file = error.getFile() and
|
|
exists(file.getRelativePath())
|
|
select file, error.getMessage()
|
|
|