vscode-php-intellisense/renovate.json

42 lines
914 B
JSON
Raw Normal View History

2018-09-01 21:50:41 +00:00
{
"extends": ["config:base", ":maintainLockFilesMonthly"],
"prCreation": "not-pending",
"rangeStrategy": "pin",
"semanticCommits": true,
"npm": {
"packageRules": [
{
2018-11-11 17:32:17 +00:00
"packagePatterns": ["*"],
"semanticCommitType": "chore",
"minor": {
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
}
}
]
2018-09-01 21:50:41 +00:00
},
"separateMinorPatch": true,
2018-09-01 21:50:41 +00:00
"composer": {
2018-11-11 03:24:51 +00:00
"enabled": true,
"rollbackPrs": false
2018-09-01 21:50:41 +00:00
},
"packageRules": [
{
"packagePatterns": ["^@types/"],
"automerge": true
},
{
"packageNames": ["felixfbecker/language-server"],
"schedule": [],
"updateTypes": ["minor"],
"semanticCommitType": "feat"
},
{
"packageNames": ["felixfbecker/language-server"],
"schedule": [],
"updateTypes": ["patch"],
"semanticCommitType": "fix"
2018-09-01 21:50:41 +00:00
}
]
}