We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 681d123 commit 0a93a01Copy full SHA for 0a93a01
lib/util/dependabot.js
@@ -1,7 +1,7 @@
1
const { name: NAME } = require('../../package.json')
2
const { minimatch } = require('minimatch')
3
4
-const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : (v ?? {}))
+const parseDependabotConfig = v => (typeof v === 'string' ? { strategy: v } : v ?? {})
5
6
module.exports = (config, defaultConfig, branches) => {
7
const { dependabot } = config
0 commit comments