|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": ["config:recommended"], |
| 4 | + "baseBranches": ["main"], |
| 5 | + "rangeStrategy": "replace", |
| 6 | + "pinDigests": true, |
| 7 | + "prConcurrentLimit": 5, |
| 8 | + "semanticCommits": "enabled", |
| 9 | + "semanticCommitScope": "deps", |
| 10 | + "semanticCommitType": "chore", |
| 11 | + "dependencyDashboard": true, |
| 12 | + "branchPrefix": "renovate/", |
| 13 | + "dependencyDashboardAutoclose": true, |
| 14 | + "commitBodyTable": true, |
| 15 | + "schedule": ["before 1am"], |
| 16 | + "automerge": false, |
| 17 | + "lockFileMaintenance": { |
| 18 | + "enabled": true |
| 19 | + }, |
| 20 | + "packageRules": [ |
| 21 | + { |
| 22 | + "groupName": "All patch dependencies", |
| 23 | + "matchPackageNames": ["*"], |
| 24 | + "matchUpdateTypes": ["patch"], |
| 25 | + "automerge": true |
| 26 | + }, |
| 27 | + { |
| 28 | + "groupName": "Linting packages", |
| 29 | + "matchPackageNames": [ |
| 30 | + "@types/eslint", |
| 31 | + "babel-eslint", |
| 32 | + "@babel/eslint-parser", |
| 33 | + "@eslint/**", |
| 34 | + "@eslint-community/**", |
| 35 | + "@stylistic/eslint-plugin**", |
| 36 | + "@types/eslint__**", |
| 37 | + "@typescript-eslint/**", |
| 38 | + "typescript-eslint", |
| 39 | + "eslint**", |
| 40 | + "@commitlint/**" |
| 41 | + ] |
| 42 | + }, |
| 43 | + { |
| 44 | + "groupName": "Testing libraries", |
| 45 | + "matchPackageNames": ["/jest/", "/ts-jest/", "/@playwright/test/"] |
| 46 | + }, |
| 47 | + { |
| 48 | + "groupName": "Nx packages", |
| 49 | + "matchPackageNames": ["/^@nx//", "/nx/", "@nx/jest"] |
| 50 | + } |
| 51 | + ] |
| 52 | +} |
0 commit comments