Commit 9181b98c authored by Mend Renovate's avatar Mend Renovate 💬
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

config.js

0 → 100644
+10 −0
Original line number Diff line number Diff line
module.exports = {
  endpoint: 'https://git.biblio19.net/api/v4/',
  platform: 'gitlab',
  persistRepoData: true,
  logLevel: 'debug',
  onboardingConfig: {
    extends: ['renovate/renovate-config'], // reference to config project that we created
  },
  autodiscover: true,
};

renovate.json

0 → 100644
+19 −0
Original line number Diff line number Diff line
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "packageRules": [
    {
      "depTypeList": [ "devDependencies", "require-dev" ],
      "updateTypes": [ "patch", "minor", "digest"],
      "groupName": "devDependencies (non-major)"
    }
  ],
  "extends": [
    "config:base",
    ":preserveSemverRanges",
    ":dependencyDashboard",
    ":rebaseStalePrs",
    ":enableVulnerabilityAlertsWithLabel('security')",
    "group:recommended"
  ]
}
 No newline at end of file