1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
{
"extends": [
"config:base",
":preserveSemverRanges"
],
"branchConcurrentLimit": 0,
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"separateMinorPatch": false,
"separateMajorMinor": false,
"ignoreDeps": [
"remark-custom-blocks",
"mdast-util-toc",
"rehype-raw",
"rehype-react",
"rehype-slug",
"remark",
"remark-react",
"remark-rehype",
"unist-util-visit",
"io.spring.dependency-management",
"com.jfrog.artifactory",
"org.ajoberstar.grgit",
"com.bmuschko.docker-remote-api",
"com.github.hierynomus.license",
"com.github.hierynomus.license-report",
"de.undercouch.download",
"com.github.johnrengelman.shadow",
"com.bmuschko.docker-remote-api",
"com.sonarsource.abap:sonar-abap-plugin",
"com.sonarsource.cobol:sonar-cobol-plugin",
"com.sonarsource.cpp:sonar-cfamily-plugin",
"com.sonarsource.pli:sonar-pli-plugin",
"com.sonarsource.plsql:sonar-plsql-plugin",
"com.sonarsource.plugins.vb:sonar-vb-plugin",
"com.sonarsource.rpg:sonar-rpg-plugin",
"com.sonarsource.security:sonar-security-csharp-frontend-plugin",
"com.sonarsource.security:sonar-security-java-frontend-plugin",
"com.sonarsource.security:sonar-security-php-frontend-plugin",
"com.sonarsource.security:sonar-security-plugin",
"com.sonarsource.security:sonar-security-python-frontend-plugin",
"com.sonarsource.security:sonar-security-js-frontend-plugin",
"com.sonarsource.slang:sonar-apex-plugin",
"com.sonarsource.swift:sonar-swift-plugin",
"com.sonarsource.tsql:sonar-tsql-plugin",
"org.sonarsource.config:sonar-config-plugin",
"org.sonarsource.dotnet:sonar-csharp-plugin",
"org.sonarsource.dotnet:sonar-vbnet-plugin",
"org.sonarsource.flex:sonar-flex-plugin",
"org.sonarsource.html:sonar-html-plugin",
"org.sonarsource.jacoco:sonar-jacoco-plugin",
"org.sonarsource.java:sonar-java-plugin",
"org.sonarsource.javascript:sonar-javascript-plugin",
"org.sonarsource.php:sonar-php-plugin",
"org.sonarsource.python:sonar-python-plugin",
"org.sonarsource.slang:sonar-go-plugin",
"org.sonarsource.kotlin:sonar-kotlin-plugin",
"org.sonarsource.slang:sonar-ruby-plugin",
"org.sonarsource.slang:sonar-scala-plugin",
"org.sonarsource.xml:sonar-xml-plugin",
"org.sonarsource.iac:sonar-iac-plugin"
],
"labels": [
"dependencies"
],
"ignorePaths": ["**/server/sonar-docs/**"],
"packageRules": [
{
"matchManagers": "maven",
"enabled": false
},
{
"matchManagers": "github-actions",
"enabled": false
},
{
"matchManagers": "dockerfile",
"enabled": false
},
{
"matchManagers": "gradle-wrapper",
"enabled": false
},
{
"matchManagers": "gradle",
"matchUpdateTypes": [
"patch",
"minor"
],
"enabled": true,
"groupName": "Minor Backend Dependencies"
},
{
"matchManagers": "gradle",
"matchUpdateTypes": [
"major"
],
"enabled": true,
"groupName": "Major Backend Dependencies"
},
{
"matchManagers": "npm",
"matchUpdateTypes": [
"patch",
"minor"
],
"enabled": true,
"groupName": "Minor Frontend Dependencies"
},
{
"matchManagers": "npm",
"matchUpdateTypes": [
"major"
],
"enabled": true,
"groupName": "Major Frontend Dependencies"
},
{
"matchManagers": "terraform",
"matchUpdateTypes": [
"major",
"patch",
"minor"
],
"enabled": true,
"groupName": "Terraform Dependencies"
}
]
}
|