mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
68c5f43468
Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"enabledManagers": ["npm"],
|
|
"ignoreDeps": [
|
|
"@types/systemjs",
|
|
"@types/d3-force",
|
|
"d3",
|
|
"d3-force", // we should bump this once we move to esm modules
|
|
"globby", // we should bump this once we move to esm modules
|
|
"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
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchPaths": ["grafana-toolkit/package.json"],
|
|
"ignoreDeps": [
|
|
"copy-webpack-plugin", // need to wait for Grafana 9 to upgrade toolkit to webpack 5
|
|
"css-loader", // need to wait for Grafana 9 to upgrade toolkit to webpack 5
|
|
]
|
|
}
|
|
],
|
|
"patch": {
|
|
"enabled": false
|
|
},
|
|
"pin": {
|
|
"enabled": false
|
|
},
|
|
"prConcurrentLimit": 10,
|
|
"reviewers": ["team:grafana/frontend-ops"],
|
|
"separateMajorMinor": false,
|
|
"vulnerabilityAlerts": {
|
|
"addLabels": ["area/security"]
|
|
}
|
|
}
|