Skip to content

Commit

Permalink
fix: styling
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Aug 7, 2024
1 parent 681d123 commit 0a93a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/dependabot.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { name: NAME } = require('../../package.json')
const { minimatch } = require('minimatch')

const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : (v ?? {}))
const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : v ?? {})

module.exports = (config, defaultConfig, branches) => {
const { dependabot } = config
Expand Down

0 comments on commit 0a93a01

Please sign in to comment.