0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 05:28:35 +00:00
renovatebot_renovate/lib/constants/category.ts
renovate[bot] eb8c08079e
chore(deps): update typescript-eslint monorepo to v8 (major) (#30750)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2024-08-14 10:33:02 +00:00

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];