diff --git a/renovate.json b/renovate.json index a22ad3f..8e673af 100644 --- a/renovate.json +++ b/renovate.json @@ -1,19 +1,29 @@ { - "extends": ["config:best-practices"], + "extends": [ + "config:best-practices" + ], "automergeSchedule": [ "before 2am" ], "packageRules": [ { - "matchUpdateTypes": ["minor", "patch", "pin"], + "matchUpdateTypes": [ + "minor", + "patch", + "pin" + ], "automerge": true }, { - "matchDatasources": ["docker"], + "matchDatasources": [ + "docker" + ], "enabled": false }, { - "packageNames": ["curl/curl"], + "matchPackageNames": [ + "curl/curl" + ], "extractVersion": "^curl-(?\\d+?)_(?\\d+?)_(?\\d+?)$" } ], @@ -23,7 +33,9 @@ "fileMatch": [ "^Makefile$" ], - "matchStrings": ["CURL_VERSION=(?.+)"], + "matchStrings": [ + "CURL_VERSION=(?.+)" + ], "datasourceTemplate": "github-tags", "depNameTemplate": "curl/curl" }, @@ -32,7 +44,9 @@ "fileMatch": [ "^Makefile$" ], - "matchStrings": ["OPENSSL_VERSION=(?.*)"], + "matchStrings": [ + "OPENSSL_VERSION=(?.*)" + ], "datasourceTemplate": "github-tags", "depNameTemplate": "openssl/openssl", "extractVersionTemplate": "^openssl-(?.+)$" @@ -42,7 +56,9 @@ "fileMatch": [ "^Makefile$" ], - "matchStrings": ["ZLIB_VERSION=(?.*)"], + "matchStrings": [ + "ZLIB_VERSION=(?.*)" + ], "datasourceTemplate": "github-tags", "depNameTemplate": "madler/zlib", "extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^v?(?.+)${{/if}}"