mirror of
https://github.com/ivuorinen/renovate-config.git
synced 2026-03-12 11:01:40 +00:00
chore: overhaul renovate preset config, docs, and tooling
- Switch schema to renovate-global-schema.json - Remove redundant/deprecated settings and presets - Add Makefile custom manager for tool version tracking - Add package groups: illuminate, semantic-release, stylelint, tailwind, vite, vue, development tools - Add check-jsonschema pre-commit hook - Add .gitignore and CLAUDE.md - Rewrite README with comprehensive preset documentation
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/.claude/settings.local.json
|
||||||
@@ -16,8 +16,18 @@ repos:
|
|||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
|
|
||||||
- repo: https://github.com/renovatebot/pre-commit-hooks
|
- repo: https://github.com/renovatebot/pre-commit-hooks
|
||||||
rev: 43.58.0
|
rev: 43.59.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: renovate-config-validator
|
- id: renovate-config-validator
|
||||||
files: default.json
|
files: default.json
|
||||||
args: [--strict]
|
args: [--strict]
|
||||||
|
|
||||||
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
|
rev: 0.37.0
|
||||||
|
hooks:
|
||||||
|
- id: check-jsonschema
|
||||||
|
name: check-renovate-preset
|
||||||
|
files: default.json
|
||||||
|
args:
|
||||||
|
- --schemafile
|
||||||
|
- https://docs.renovatebot.com/renovate-global-schema.json
|
||||||
|
|||||||
40
CLAUDE.md
Normal file
40
CLAUDE.md
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
## Project overview
|
||||||
|
|
||||||
|
Shared [Renovate](https://github.com/renovatebot/renovate) preset configuration for repositories managed by ivuorinen. Other repos consume this preset via `"extends": ["github>ivuorinen/renovate-config"]` in their Renovate config.
|
||||||
|
|
||||||
|
## Repository structure
|
||||||
|
|
||||||
|
```
|
||||||
|
default.json # The shared Renovate preset (this is the main artifact)
|
||||||
|
.github/renovate.json # This repo's own Renovate config (self-referencing)
|
||||||
|
.pre-commit-config.yaml # Pre-commit hooks including config validation
|
||||||
|
.editorconfig # Editor conventions
|
||||||
|
LICENSE # MIT
|
||||||
|
README.md # Usage instructions
|
||||||
|
```
|
||||||
|
|
||||||
|
## Validation
|
||||||
|
|
||||||
|
Run the pre-commit hook to validate `default.json`:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
pre-commit run --all-files
|
||||||
|
```
|
||||||
|
|
||||||
|
This runs two validators against `default.json`: `renovate-config-validator --strict` (Renovate's own validator) and `check-renovate` (JSON Schema validation via [check-jsonschema](https://github.com/python-jsonschema/check-jsonschema)). The hooks also enforce JSON formatting (`pretty-format-json --autofix --no-ensure-ascii`), trailing whitespace removal, and other checks.
|
||||||
|
|
||||||
|
## How default.json works
|
||||||
|
|
||||||
|
- Extends `config:recommended` and several Renovate built-in presets
|
||||||
|
- Defines `packageRules` for automerge (minor/patch), labeling by update type and datasource, and grouping (devDependencies, eslint, phpstan)
|
||||||
|
- Includes a `customManagers` regex manager for Dockerfile ENV/FROM version extraction
|
||||||
|
- Configures semantic commits (`chore(deps):` scope), squash automerge strategy, and non-office-hours schedule (Europe/Helsinki)
|
||||||
|
- Sets `postUpdateOptions` for lock file deduplication across bundler, composer, go, npm, pnpm, and yarn
|
||||||
|
|
||||||
|
## Conventions
|
||||||
|
|
||||||
|
- 2-space indentation, UTF-8, LF line endings, final newline (per `.editorconfig`)
|
||||||
|
- JSON keys in `default.json` are sorted alphabetically
|
||||||
|
- No build system, no tests, no application code
|
||||||
188
README.md
188
README.md
@@ -1,25 +1,13 @@
|
|||||||
# Renovate configs
|
# Renovate Config
|
||||||
|
|
||||||
[Renovate](https://github.com/renovatebot/renovate) is a tool for automating
|
Shared [Renovate](https://github.com/renovatebot/renovate) preset configuration
|
||||||
dependency updates. This repository contains my personal
|
for repositories managed by **ivuorinen**. Other repos consume this preset via
|
||||||
Renovate configuration.
|
their Renovate config, so changes here propagate automatically to every
|
||||||
|
repository that extends it.
|
||||||
|
|
||||||
This configuration and Renovate creates a single issue in the repository for
|
## Usage
|
||||||
tracking all dependency updates. Renovate will automatically update the
|
|
||||||
issue with new updates and you can force creation and rerunning of the
|
|
||||||
Renovate bot by checking list items in the issue.
|
|
||||||
|
|
||||||
Updates to the configuration are automatically applied to all repositories
|
Create `.github/renovate.json` in your repository:
|
||||||
that use this configuration. If you want to use this configuration in your
|
|
||||||
projects you can do so by extending this configuration in your own
|
|
||||||
in `.github/renovate.json` file.
|
|
||||||
|
|
||||||
Please see Renovate configuration documentation to see how you can
|
|
||||||
extend this configuration to suit your needs.
|
|
||||||
|
|
||||||
## Basic usage:
|
|
||||||
|
|
||||||
Create a file to `.github/renovate.json` with the following content:
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
@@ -28,6 +16,168 @@ Create a file to `.github/renovate.json` with the following content:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
See [Renovate Docs: Shareable Config Presets](https://docs.renovatebot.com/config-presets/)
|
||||||
|
for more on how shared presets work.
|
||||||
|
|
||||||
|
## Extends
|
||||||
|
|
||||||
|
This preset inherits from the following built-in Renovate presets:
|
||||||
|
|
||||||
|
| Preset | Description |
|
||||||
|
|--------|-------------|
|
||||||
|
| `config:recommended` | Renovate's recommended base configuration |
|
||||||
|
| `:enableVulnerabilityAlerts` | Create PRs for known security vulnerabilities |
|
||||||
|
| `:labels(dependencies)` | Add `dependencies` label to all PRs |
|
||||||
|
| `:preserveSemverRanges` | Keep existing semver range syntax when updating |
|
||||||
|
| `:semanticCommits` | Use conventional commit messages (`chore(deps):`) |
|
||||||
|
| `:timezone(Europe/Helsinki)` | Schedule evaluation in Europe/Helsinki timezone |
|
||||||
|
| `docker:enableMajor` | Enable major version updates for Docker |
|
||||||
|
| `helpers:pinGitHubActionDigests` | Pin GitHub Actions to full SHA digests |
|
||||||
|
| `security:minimumReleaseAgeNpm` | Require a minimum release age for npm packages |
|
||||||
|
| `schedule:nonOfficeHours` | Run Renovate outside office hours |
|
||||||
|
|
||||||
|
## Key settings
|
||||||
|
|
||||||
|
| Setting | Value | Description |
|
||||||
|
|---------|-------|-------------|
|
||||||
|
| `assigneesFromCodeOwners` | `true` | Assign PRs to CODEOWNERS |
|
||||||
|
| `automergeStrategy` | `squash` | Squash-merge automerged PRs |
|
||||||
|
| `commitBody` | `Signed-off-by: {{{gitAuthor}}}` | DCO sign-off in commit body |
|
||||||
|
| `commitMessageAction` | `update` | Use "update" as the commit action verb |
|
||||||
|
| `commitMessageExtra` | `({{currentVersion}} -> {{newVersion}})` | Show version range in commits |
|
||||||
|
| `dependencyDashboardLabels` | `["no-stale"]` | Prevent stale-bot from closing the dashboard |
|
||||||
|
| `dependencyDashboardOSVVulnerabilitySummary` | `unresolved` | Show unresolved OSV vulnerabilities |
|
||||||
|
| `dependencyDashboardTitle` | `Renovate Dashboard` | Custom dashboard issue title |
|
||||||
|
| `onboardingConfigFileName` | `.github/renovate.json` | Default onboarding config path |
|
||||||
|
| `prHourlyLimit` | `5` | Max 5 PRs created per hour |
|
||||||
|
| `reviewersFromCodeOwners` | `true` | Request reviews from CODEOWNERS |
|
||||||
|
| `separateMultipleMajor` | `true` | Create separate PRs for each major version bump |
|
||||||
|
|
||||||
|
## Custom managers
|
||||||
|
|
||||||
|
### Dockerfile
|
||||||
|
|
||||||
|
Extracts versions from `ENV` variables and `FROM` lines in Dockerfiles using
|
||||||
|
[regex manager](https://docs.renovatebot.com/modules/manager/regex/).
|
||||||
|
|
||||||
|
**Patterns matched:**
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
|
# ENV with inline datasource comment
|
||||||
|
ENV TOOL_VERSION=1.2.3 # github-releases/owner/repo
|
||||||
|
|
||||||
|
# Standard FROM line
|
||||||
|
FROM node:20-alpine
|
||||||
|
```
|
||||||
|
|
||||||
|
Regex (applied with `matchStringsStrategy: "any"`):
|
||||||
|
|
||||||
|
```
|
||||||
|
ENV [A-Z]+_VERSION=(?<currentValue>.*) # (?<datasource>.*?)/(?<depName>.*?)(\&versioning=(?<versioning>.*))?\s
|
||||||
|
FROM (?<depName>\S*):(?<currentValue>\S*)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Makefile
|
||||||
|
|
||||||
|
Tracks tool versions in Makefiles via `# renovate:` comments using
|
||||||
|
[regex manager](https://docs.renovatebot.com/modules/manager/regex/).
|
||||||
|
|
||||||
|
Files matched: `Makefile`, `*.mk`
|
||||||
|
|
||||||
|
**Pattern matched:**
|
||||||
|
|
||||||
|
```makefile
|
||||||
|
# renovate: datasource=go depName=github.com/goreleaser/goreleaser/v2
|
||||||
|
GORELEASER_VERSION := v2.14.1
|
||||||
|
```
|
||||||
|
|
||||||
|
Regex:
|
||||||
|
|
||||||
|
```
|
||||||
|
#\s*renovate:\s*datasource=(?<datasource>\S+)\s+depName=(?<depName>\S+)\n[A-Z_]+\s*:?=\s*(?<currentValue>v?\d+\.\d+\.\d+\S*)
|
||||||
|
```
|
||||||
|
|
||||||
|
The `datasource` and `depName` are captured from the comment, and
|
||||||
|
`currentValue` from the variable assignment. Uses `semver` versioning.
|
||||||
|
|
||||||
|
## Package rules
|
||||||
|
|
||||||
|
### Automerge and labeling
|
||||||
|
|
||||||
|
| Rule | Matches | Effect |
|
||||||
|
|------|---------|--------|
|
||||||
|
| Major commit prefix | `matchUpdateTypes: ["major"]` | `chore(deps)!:` prefix, `type/major` label |
|
||||||
|
| Automerge non-major | `matchUpdateTypes: ["minor", "patch", "digest"]` | Automerge via branch strategy |
|
||||||
|
| Minor label | `matchUpdateTypes: ["minor"]` | `type/minor` label |
|
||||||
|
| Patch label | `matchUpdateTypes: ["patch"]` | `type/patch` label |
|
||||||
|
| Digest label | `matchUpdateTypes: ["digest"]` | `type/digest` label |
|
||||||
|
|
||||||
|
### Datasource labels and commit topics
|
||||||
|
|
||||||
|
| Datasource / Manager | Label | Commit topic |
|
||||||
|
|-----------------------|-------|--------------|
|
||||||
|
| `docker` | `renovate/container` | `image {{depName}}` |
|
||||||
|
| `helm` | `renovate/helm` | `chart {{depName}}` |
|
||||||
|
| `galaxy`, `galaxy-collection` | `renovate/ansible` | - |
|
||||||
|
| `terraform-provider` | `renovate/terraform` | - |
|
||||||
|
| `github-releases`, `github-tags` | `renovate/github-release` | - |
|
||||||
|
| `github-actions` (manager) | `renovate/github-action` | scope: `actions` |
|
||||||
|
| `pypi` | `renovate/pip` | - |
|
||||||
|
|
||||||
|
### Dependency groups
|
||||||
|
|
||||||
|
Related packages are grouped into single PRs:
|
||||||
|
|
||||||
|
| Group name | Match criteria |
|
||||||
|
|------------|----------------|
|
||||||
|
| devDependencies (non-major) | `matchDepTypes: ["devDependencies"]`, minor/patch only |
|
||||||
|
| development tools | `matchFileNames: ["Makefile", "**/*.mk"]`, custom.regex manager |
|
||||||
|
| eslint | Package names matching `/eslint/` |
|
||||||
|
| illuminate | Package names matching `/illuminate/` |
|
||||||
|
| phpstan | Package names matching `/phpstan/` or `/larastan/` |
|
||||||
|
| semantic-release | Package names matching `/semantic-release/` |
|
||||||
|
| stylelint | Package names matching `/stylelint/` |
|
||||||
|
| tailwind | Package names matching `/tailwind/` |
|
||||||
|
| vite | Package names matching `/vite/` |
|
||||||
|
| vue | Package names matching `/vue/` |
|
||||||
|
|
||||||
|
## Post-update options
|
||||||
|
|
||||||
|
Lock file maintenance after dependency updates:
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|--------|-------------|
|
||||||
|
| `bundlerConservative` | Conservative Bundler updates |
|
||||||
|
| `composerWithAll` | Run `composer update` with `--with-all-dependencies` |
|
||||||
|
| `gomodUpdateImportPaths` | Update Go import paths on major updates |
|
||||||
|
| `npmDedupe` | Run `npm dedupe` after updates |
|
||||||
|
| `pnpmDedupe` | Run `pnpm dedupe` after updates |
|
||||||
|
| `yarnDedupeHighest` | Run `yarn dedupe --strategy highest` after updates |
|
||||||
|
|
||||||
|
## Other configuration
|
||||||
|
|
||||||
|
| Setting | Value | Description |
|
||||||
|
|---------|-------|-------------|
|
||||||
|
| `digest.enabled` | `false` | Digest-only updates disabled |
|
||||||
|
| `git-submodules.enabled` | `true` | Track git submodule updates |
|
||||||
|
| `pre-commit.enabled` | `true` | Update pre-commit hook versions |
|
||||||
|
| `ignorePaths` | `**/*.sops.*`, `**/.archive/**`, `**/testdata/**` | Skip encrypted, archived, and test fixture files |
|
||||||
|
|
||||||
|
## Validation
|
||||||
|
|
||||||
|
Run the pre-commit hooks to validate `default.json`:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
pre-commit run --all-files
|
||||||
|
```
|
||||||
|
|
||||||
|
This executes:
|
||||||
|
|
||||||
|
- **`pretty-format-json`** -- ensures consistent JSON formatting
|
||||||
|
- **`renovate-config-validator --strict`** -- Renovate's own config validation
|
||||||
|
- **`check-renovate`** -- JSON Schema validation against `renovate-global-schema.json`
|
||||||
|
- Standard checks (trailing whitespace, end-of-file fixer, etc.)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
[MIT](LICENSE)
|
[MIT](LICENSE)
|
||||||
|
|||||||
108
default.json
108
default.json
@@ -1,13 +1,10 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-global-schema.json",
|
||||||
"assigneesFromCodeOwners": true,
|
"assigneesFromCodeOwners": true,
|
||||||
"automergeStrategy": "squash",
|
"automergeStrategy": "squash",
|
||||||
"commitBody": "Signed-off-by: {{{gitAuthor}}}",
|
"commitBody": "Signed-off-by: {{{gitAuthor}}}",
|
||||||
"commitMessageAction": "update",
|
"commitMessageAction": "update",
|
||||||
"commitMessageExtra": " ({{currentVersion}} → {{newVersion}})",
|
"commitMessageExtra": " ({{currentVersion}} → {{newVersion}})",
|
||||||
"commitMessageSuffix": "",
|
|
||||||
"commitMessageTopic": "{{depName}}",
|
|
||||||
"configMigration": true,
|
|
||||||
"customManagers": [
|
"customManagers": [
|
||||||
{
|
{
|
||||||
"customType": "regex",
|
"customType": "regex",
|
||||||
@@ -24,6 +21,21 @@
|
|||||||
"FROM (?<depName>\\S*):(?<currentValue>\\S*)"
|
"FROM (?<depName>\\S*):(?<currentValue>\\S*)"
|
||||||
],
|
],
|
||||||
"matchStringsStrategy": "any"
|
"matchStringsStrategy": "any"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"customType": "regex",
|
||||||
|
"description": [
|
||||||
|
"Track tool versions in Makefiles via '# renovate: datasource=X depName=Y' comments. ",
|
||||||
|
"See https://docs.renovatebot.com/configuration-options/#matchstringsstrategy"
|
||||||
|
],
|
||||||
|
"managerFilePatterns": [
|
||||||
|
"^Makefile$",
|
||||||
|
".*\\.mk$"
|
||||||
|
],
|
||||||
|
"matchStrings": [
|
||||||
|
"#\\s*renovate:\\s*datasource=(?<datasource>\\S+)\\s+depName=(?<depName>\\S+)\\n[A-Z_]+\\s*:?=\\s*(?<currentValue>v?\\d+\\.\\d+\\.\\d+\\S*)"
|
||||||
|
],
|
||||||
|
"versioningTemplate": "semver"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencyDashboardLabels": [
|
"dependencyDashboardLabels": [
|
||||||
@@ -39,17 +51,13 @@
|
|||||||
"config:recommended",
|
"config:recommended",
|
||||||
":enableVulnerabilityAlerts",
|
":enableVulnerabilityAlerts",
|
||||||
":labels(dependencies)",
|
":labels(dependencies)",
|
||||||
":maintainLockFilesWeekly",
|
|
||||||
":preserveSemverRanges",
|
":preserveSemverRanges",
|
||||||
":semanticCommits",
|
":semanticCommits",
|
||||||
":timezone(Europe/Helsinki)",
|
":timezone(Europe/Helsinki)",
|
||||||
"docker:enableMajor",
|
"docker:enableMajor",
|
||||||
"group:recommended",
|
|
||||||
"helpers:pinGitHubActionDigests",
|
"helpers:pinGitHubActionDigests",
|
||||||
"npm:unpublishSafe",
|
"security:minimumReleaseAgeNpm",
|
||||||
"replacements:all",
|
"schedule:nonOfficeHours"
|
||||||
"schedule:nonOfficeHours",
|
|
||||||
"workarounds:all"
|
|
||||||
],
|
],
|
||||||
"git-submodules": {
|
"git-submodules": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
@@ -63,18 +71,13 @@
|
|||||||
"**/.archive/**",
|
"**/.archive/**",
|
||||||
"**/testdata/**"
|
"**/testdata/**"
|
||||||
],
|
],
|
||||||
"lockFileMaintenance": {
|
|
||||||
"enabled": true,
|
|
||||||
"extends": [
|
|
||||||
"group:all"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"onboardingConfigFileName": ".github/renovate.json",
|
"onboardingConfigFileName": ".github/renovate.json",
|
||||||
"osvVulnerabilityAlerts": true,
|
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"commitMessagePrefix": "chore(deps)!: ",
|
"commitMessagePrefix": "chore(deps)!: ",
|
||||||
"commitMessageTopic": "{{depName}}",
|
"labels": [
|
||||||
|
"type/major"
|
||||||
|
],
|
||||||
"matchUpdateTypes": [
|
"matchUpdateTypes": [
|
||||||
"major"
|
"major"
|
||||||
]
|
]
|
||||||
@@ -100,14 +103,6 @@
|
|||||||
"docker"
|
"docker"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"labels": [
|
|
||||||
"type/major"
|
|
||||||
],
|
|
||||||
"matchUpdateTypes": [
|
|
||||||
"major"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"labels": [
|
"labels": [
|
||||||
"type/minor"
|
"type/minor"
|
||||||
@@ -180,7 +175,8 @@
|
|||||||
],
|
],
|
||||||
"matchManagers": [
|
"matchManagers": [
|
||||||
"github-actions"
|
"github-actions"
|
||||||
]
|
],
|
||||||
|
"semanticCommitScope": "actions"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"addLabels": [
|
"addLabels": [
|
||||||
@@ -200,24 +196,69 @@
|
|||||||
"minor"
|
"minor"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"groupName": "development tools",
|
||||||
|
"matchFileNames": [
|
||||||
|
"Makefile",
|
||||||
|
"**/*.mk"
|
||||||
|
],
|
||||||
|
"matchManagers": [
|
||||||
|
"custom.regex"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"groupName": "eslint",
|
"groupName": "eslint",
|
||||||
"matchPackageNames": [
|
"matchPackageNames": [
|
||||||
"/eslint/"
|
"/eslint/"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"groupName": "illuminate",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/illuminate/"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"groupName": "phpstan",
|
"groupName": "phpstan",
|
||||||
"matchPackageNames": [
|
"matchPackageNames": [
|
||||||
"/phpstan/",
|
"/phpstan/",
|
||||||
"/larastan/"
|
"/larastan/"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "semantic-release",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/semantic-release/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "stylelint",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/stylelint/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "tailwind",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/tailwind/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "vite",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/vite/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "vue",
|
||||||
|
"matchPackageNames": [
|
||||||
|
"/vue/"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"postUpdateOptions": [
|
"postUpdateOptions": [
|
||||||
"bundlerConservative",
|
"bundlerConservative",
|
||||||
"composerWithAll",
|
"composerWithAll",
|
||||||
"dotnetWorkloadRestore",
|
|
||||||
"gomodUpdateImportPaths",
|
"gomodUpdateImportPaths",
|
||||||
"npmDedupe",
|
"npmDedupe",
|
||||||
"pnpmDedupe",
|
"pnpmDedupe",
|
||||||
@@ -227,7 +268,6 @@
|
|||||||
"pre-commit": {
|
"pre-commit": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"pruneStaleBranches": true,
|
|
||||||
"renovate-config-presets": {
|
"renovate-config-presets": {
|
||||||
"managerFilePatterns": [
|
"managerFilePatterns": [
|
||||||
"renovate.json",
|
"renovate.json",
|
||||||
@@ -243,13 +283,5 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"reviewersFromCodeOwners": true,
|
"reviewersFromCodeOwners": true,
|
||||||
"semanticCommitScope": "deps",
|
"separateMultipleMajor": true
|
||||||
"semanticCommitType": "chore",
|
|
||||||
"semanticCommits": "enabled",
|
|
||||||
"separateMajorMinor": true,
|
|
||||||
"separateMinorPatch": false,
|
|
||||||
"separateMultipleMajor": true,
|
|
||||||
"vulnerabilityAlerts": {
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user