32 lines
423 B
TypeScript
32 lines
423 B
TypeScript
export const CLI_LANGUAGES = [
|
|
"bash",
|
|
"c",
|
|
"cpp",
|
|
"csharp",
|
|
"css",
|
|
"elixir",
|
|
"go",
|
|
"haskell",
|
|
"html",
|
|
"java",
|
|
"javascript",
|
|
"json",
|
|
"kotlin",
|
|
"lua",
|
|
"nix",
|
|
"php",
|
|
"python",
|
|
"ruby",
|
|
"rust",
|
|
"scala",
|
|
"solidity",
|
|
"swift",
|
|
"typescript",
|
|
"tsx",
|
|
"yaml",
|
|
] as const
|
|
|
|
export const DEFAULT_TIMEOUT_MS = 300_000
|
|
export const DEFAULT_MAX_OUTPUT_BYTES = 1 * 1024 * 1024
|
|
export const DEFAULT_MAX_MATCHES = 500
|