mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
We no longer need the platform-specific directories, so simplify the test organization. If you want to retain the `linux` directory for two tests, or not do this at all, just skip merging this PR. It's purely optional.
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
import go
|
|
import semmle.go.DiagnosticsReporting
|
|
|
|
from GoFile f
|
|
select f
|
|
|
|
query predicate htmlFiles(HtmlFile x) { any() }
|
|
|
|
query predicate extractionErrors(string msg, int sev) { reportableDiagnostics(_, msg, sev) }
|