mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
0776fdd418
* Add renovate.json * Add renovate.json * Chore(Renovate): Move config file, adjust settings, remove dependabot config * Chore(Renovate): Remove duplicate renovate.json * Chore(Renovate): Don't pin deps, only match root + grafana packages package.json * Chore(Renovate): Update ignored paths * Chore(Renovate): Use json5 to allow for comments Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
33 lines
715 B
Plaintext
33 lines
715 B
Plaintext
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"enabledManagers": ["npm"],
|
|
"ignoreDeps": [
|
|
"d3",
|
|
"husky",
|
|
"slate",
|
|
"slate-plain-serializer",
|
|
"systemjs",
|
|
"ts-loader", // we should remove ts-loader and use babel-loader instead
|
|
"ora" // we should bump this once we move to esm modules
|
|
],
|
|
"ignorePaths": ["emails/**", "plugins-bundled/**", "**/mocks/**"],
|
|
"labels": ["area/frontend", "dependencies"],
|
|
"minor": {
|
|
"enabled": false
|
|
},
|
|
"patch": {
|
|
"enabled": false
|
|
},
|
|
"pin": {
|
|
"enabled": false
|
|
},
|
|
"prConcurrentLimit": 10,
|
|
"reviewers": ["team:grafana/frontend-ops"],
|
|
"separateMajorMinor": false,
|
|
"vulnerabilityAlerts": {
|
|
"addLabels": ["area/security"]
|
|
}
|
|
}
|