mirror of https://github.com/renovatebot/renovate
31 lines
386 B
TypeScript
31 lines
386 B
TypeScript
// istanbul ignore next
|
|
export const Categories = [
|
|
'ansible',
|
|
'batect',
|
|
'bazel',
|
|
'c',
|
|
'cd',
|
|
'ci',
|
|
'custom',
|
|
'dart',
|
|
'docker',
|
|
'dotnet',
|
|
'elixir',
|
|
'golang',
|
|
'helm',
|
|
'iac',
|
|
'java',
|
|
'js',
|
|
'kubernetes',
|
|
'node',
|
|
'perl',
|
|
'php',
|
|
'python',
|
|
'ruby',
|
|
'rust',
|
|
'swift',
|
|
'terraform',
|
|
] as const;
|
|
|
|
export type Category = (typeof Categories)[number];
|