0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-12 15:41:58 +00:00
renovatebot_renovate/lib/constants/category.ts
2025-02-26 12:40:30 +00:00

30 lines
375 B
TypeScript

export const Categories = [
'ansible',
'batect',
'bazel',
'c',
'cd',
'ci',
'custom',
'dart',
'docker',
'dotnet',
'elixir',
'golang',
'haskell',
'helm',
'iac',
'java',
'js',
'kubernetes',
'node',
'perl',
'php',
'python',
'ruby',
'rust',
'swift',
'terraform',
] as const;
export type Category = (typeof Categories)[number];