You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

renovate.json 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "extends": [
  3. "config:base",
  4. ":preserveSemverRanges"
  5. ],
  6. "branchConcurrentLimit": 0,
  7. "prConcurrentLimit": 0,
  8. "prHourlyLimit": 0,
  9. "separateMinorPatch": false,
  10. "separateMajorMinor": false,
  11. "ignoreDeps": [
  12. "org.ajoberstar.grgit",
  13. "com.bmuschko.docker-remote-api",
  14. "com.sonarsource.abap:sonar-abap-plugin",
  15. "com.sonarsource.cobol:sonar-cobol-plugin",
  16. "com.sonarsource.cpp:sonar-cfamily-plugin",
  17. "com.sonarsource.pli:sonar-pli-plugin",
  18. "com.sonarsource.plsql:sonar-plsql-plugin",
  19. "com.sonarsource.plugins.vb:sonar-vb-plugin",
  20. "com.sonarsource.rpg:sonar-rpg-plugin",
  21. "com.sonarsource.security:sonar-security-csharp-frontend-plugin",
  22. "com.sonarsource.security:sonar-security-java-frontend-plugin",
  23. "com.sonarsource.security:sonar-security-php-frontend-plugin",
  24. "com.sonarsource.security:sonar-security-plugin",
  25. "com.sonarsource.security:sonar-security-python-frontend-plugin",
  26. "com.sonarsource.security:sonar-security-js-frontend-plugin",
  27. "com.sonarsource.slang:sonar-apex-plugin",
  28. "com.sonarsource.swift:sonar-swift-plugin",
  29. "com.sonarsource.tsql:sonar-tsql-plugin",
  30. "org.sonarsource.config:sonar-config-plugin",
  31. "org.sonarsource.dotnet:sonar-csharp-plugin",
  32. "org.sonarsource.dotnet:sonar-vbnet-plugin",
  33. "org.sonarsource.flex:sonar-flex-plugin",
  34. "org.sonarsource.html:sonar-html-plugin",
  35. "org.sonarsource.jacoco:sonar-jacoco-plugin",
  36. "org.sonarsource.java:sonar-java-plugin",
  37. "org.sonarsource.javascript:sonar-javascript-plugin",
  38. "org.sonarsource.php:sonar-php-plugin",
  39. "org.sonarsource.python:sonar-python-plugin",
  40. "org.sonarsource.slang:sonar-go-plugin",
  41. "org.sonarsource.kotlin:sonar-kotlin-plugin",
  42. "org.sonarsource.slang:sonar-ruby-plugin",
  43. "org.sonarsource.slang:sonar-scala-plugin",
  44. "org.sonarsource.xml:sonar-xml-plugin",
  45. "org.sonarsource.iac:sonar-iac-plugin"
  46. ],
  47. "labels": [
  48. "dependencies"
  49. ],
  50. "packageRules": [
  51. {
  52. "matchManagers": "maven",
  53. "enabled": false
  54. },
  55. {
  56. "matchManagers": "github-actions",
  57. "enabled": false
  58. },
  59. {
  60. "matchManagers": "dockerfile",
  61. "enabled": false
  62. },
  63. {
  64. "matchManagers": "gradle-wrapper",
  65. "enabled": false
  66. },
  67. {
  68. "matchManagers": "gradle",
  69. "matchUpdateTypes": [
  70. "patch",
  71. "minor"
  72. ],
  73. "enabled": true,
  74. "groupName": "Minor Backend Dependencies"
  75. },
  76. {
  77. "matchManagers": "gradle",
  78. "matchUpdateTypes": [
  79. "major"
  80. ],
  81. "enabled": true,
  82. "groupName": "Major Backend Dependencies"
  83. },
  84. {
  85. "matchManagers": "npm",
  86. "matchUpdateTypes": [
  87. "patch",
  88. "minor"
  89. ],
  90. "enabled": true,
  91. "groupName": "Minor Frontend Dependencies"
  92. },
  93. {
  94. "matchManagers": "npm",
  95. "matchUpdateTypes": [
  96. "major"
  97. ],
  98. "enabled": true,
  99. "groupName": "Major Frontend Dependencies"
  100. }
  101. ]
  102. }