Skip to content

Commit 0a93a01

Browse files
committed
fix: styling
1 parent 681d123 commit 0a93a01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/dependabot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { name: NAME } = require('../../package.json')
22
const { minimatch } = require('minimatch')
33

4-
const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : (v ?? {}))
4+
const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : v ?? {})
55

66
module.exports = (config, defaultConfig, branches) => {
77
const { dependabot } = config

0 commit comments

Comments
 (0)