mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
2a07e91be6
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
export const programmingLanguages = [
|
|
'dart',
|
|
'docker',
|
|
'elixir',
|
|
'golang',
|
|
'java',
|
|
'js',
|
|
'dotnet',
|
|
'node',
|
|
'php',
|
|
'python',
|
|
'ruby',
|
|
'rust',
|
|
] as const;
|
|
|
|
export type ProgrammingLanguage = typeof programmingLanguages[number];
|