Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): capitalize proper noun Docker #12057

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(config): capitalize proper noun Docker
  • Loading branch information
HonkingGoose committed Oct 7, 2021
commit 3fa8b35225b083c87599631146e93075b977967f
6 changes: 3 additions & 3 deletions lib/config/presets/internal/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Preset } from '../types';

export const presets: Record<string, Preset> = {
disable: {
description: 'Disable docker updates',
description: 'Disable Docker updates',
docker: {
enabled: false,
},
Expand All @@ -14,7 +14,7 @@ export const presets: Record<string, Preset> = {
},
},
enableMajor: {
description: 'Enable docker major updates',
description: 'Enable Docker major updates',
packageRules: [
{
matchDatasources: ['docker'],
Expand All @@ -24,7 +24,7 @@ export const presets: Record<string, Preset> = {
],
},
disableMajor: {
description: 'Disable docker major updates',
description: 'Disable Docker major updates',
packageRules: [
{
matchDatasources: ['docker'],
Expand Down