Browse Source

Add renovate config (#3341)

* Add renovate config

* Run linter
pull/3665/head
Michał Chęciński 3 years ago committed by GitHub
parent
commit
67a93337f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      renovate.json

28
renovate.json

@ -0,0 +1,28 @@ @@ -0,0 +1,28 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"schedule:monthly",
":maintainLockFilesMonthly",
":preserveSemverRanges",
":rebaseStalePrs",
":disableMajorUpdates"
],
"enabledManagers": ["npm"],
"packageRules": [
{
"matchPackagePatterns": ["typescript"],
"enabled": false
},
{
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm"
},
{
"packageNames": ["typescript"],
"updateTypes": "patch"
}
],
"ignoreDeps": ["bootstrap", "electron-builder", "node-ipc", "regedit"]
}
Loading…
Cancel
Save