mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
19 lines
758 B
TypeScript
19 lines
758 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GithubReleasesDatasource } from '../../datasource/github-releases';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const displayName = 'TFLint Plugins';
|
|
export const url =
|
|
'https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md';
|
|
export const categories: Category[] = ['terraform'];
|
|
|
|
export const defaultConfig = {
|
|
commitMessageTopic: 'TFLint plugin {{depName}}',
|
|
fileMatch: ['\\.tflint\\.hcl$'],
|
|
extractVersion: '^v(?<version>.*)$',
|
|
};
|
|
|
|
// Only from GitHub Releases: https://github.com/terraform-linters/tflint/blob/master/docs/developer-guide/plugins.md#4-creating-a-github-release
|
|
export const supportedDatasources = [GithubReleasesDatasource.id];
|