mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
bad0a744dd
While we want the CodeQL Action to work with third-party language support, having a list of all built-in languages can help us create better type-level checks to ensure that we don't miss things that we want to customize for each of our built-in languages.
26 lines
392 B
JSON
26 lines
392 B
JSON
{
|
|
"languages": [
|
|
"actions",
|
|
"cpp",
|
|
"csharp",
|
|
"go",
|
|
"java",
|
|
"javascript",
|
|
"python",
|
|
"ruby",
|
|
"rust",
|
|
"swift"
|
|
],
|
|
"aliases": {
|
|
"c": "cpp",
|
|
"c-c++": "cpp",
|
|
"c-cpp": "cpp",
|
|
"c#": "csharp",
|
|
"c++": "cpp",
|
|
"java-kotlin": "java",
|
|
"javascript-typescript": "javascript",
|
|
"kotlin": "java",
|
|
"typescript": "javascript"
|
|
}
|
|
}
|