mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 15:41:58 +00:00
30 lines
375 B
TypeScript
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];
|