mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-11 14:08:55 +08:00
0c7b20dc18
#### PR Dependency Tree * **PR #15464** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Replaced the project’s formatting and linting workflow with Oxfmt and Oxlint. * Added shared formatting and linting configuration, editor integration, and updated automated checks. * Updated generated files, scripts, and lint guidance to use the new tooling. * **Style** * Reformatted templates, source code, examples, and configuration files for consistent readability. * No user-facing functionality or rendering behavior changed. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
92 lines
2.3 KiB
JSON
92 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended", ":disablePeerDependencies"],
|
|
"labels": ["dependencies"],
|
|
"ignorePaths": [
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/examples/**",
|
|
"**/__tests__/**"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"rangeStrategy": "replace",
|
|
"groupName": "linter",
|
|
"matchPackageNames": ["/^eslint-plugin/"]
|
|
},
|
|
{
|
|
"matchDepNames": ["oxlint"],
|
|
"rangeStrategy": "replace",
|
|
"groupName": "oxlint"
|
|
},
|
|
{
|
|
"groupName": "all non-major rust dependencies",
|
|
"groupSlug": "all-minor-patch",
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchManagers": ["cargo"]
|
|
},
|
|
{
|
|
"groupName": "all non-major npm dependencies",
|
|
"groupSlug": "all-minor-patch",
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchManagers": ["npm"],
|
|
"excludePackagePatterns": ["^@blocksuite/", "^oxlint$"]
|
|
},
|
|
{
|
|
"groupName": "all non-major dependencies",
|
|
"groupSlug": "all-minor-patch",
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchManagers": [
|
|
"dockerfile",
|
|
"github-actions",
|
|
"helmv3",
|
|
"helm-values",
|
|
"gradle-wrapper",
|
|
"gradle",
|
|
"docker-compose",
|
|
"devcontainer",
|
|
"cocoapods",
|
|
"bundler"
|
|
]
|
|
},
|
|
{
|
|
"groupName": "rust toolchain",
|
|
"matchManagers": ["custom.regex"],
|
|
"matchDepNames": ["rustc"]
|
|
},
|
|
{
|
|
"groupName": "nestjs",
|
|
"matchPackageNames": ["/^@nestjs/"]
|
|
},
|
|
{
|
|
"groupName": "opentelemetry",
|
|
"matchPackageNames": [
|
|
"/^@opentelemetry/",
|
|
"/^@google-cloud/opentelemetry-/"
|
|
]
|
|
}
|
|
],
|
|
"commitMessagePrefix": "chore: ",
|
|
"commitMessageAction": "bump up",
|
|
"commitMessageTopic": "{{depName}} version",
|
|
"ignoreDeps": [],
|
|
"postUpdateOptions": ["yarnDedupeHighest"],
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"extends": ["schedule:weekly"]
|
|
},
|
|
"customManagers": [
|
|
{
|
|
"customType": "regex",
|
|
"managerFilePatterns": ["/^rust-toolchain\\.toml?$/"],
|
|
"matchStrings": [
|
|
"channel\\s*=\\s*\"(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)\""
|
|
],
|
|
"depNameTemplate": "rustc",
|
|
"packageNameTemplate": "rust-lang/rust",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
}
|