mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 16:23:39 +00:00
44 lines
951 B
JSON
44 lines
951 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:base"],
|
|
"rebaseWhen": "behind-base-branch",
|
|
"npm": {
|
|
"fileMatch": ["(^|/)package\\.hugo\\.json$"],
|
|
"rangeStrategy": "bump",
|
|
"updateLockFiles": false,
|
|
"ignoreTests": true,
|
|
"ignorePaths": [
|
|
"package.json",
|
|
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/examples/**",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/__fixtures__/**"
|
|
]
|
|
},
|
|
"gomod": {
|
|
"fileMatch": ["(^|/)go\\.mod$"],
|
|
"rangeStrategy": "bump"
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["gomod"],
|
|
"matchDepTypes": ["indirect"],
|
|
"enabled": true,
|
|
"groupName": "Hugo Modules"
|
|
},
|
|
{
|
|
"extends": "packages:linters",
|
|
"groupName": "linters"
|
|
},
|
|
{
|
|
"extends": "packages:postcss",
|
|
"groupName": "postcss packages"
|
|
}
|
|
]
|
|
}
|