aboutsummaryrefslogtreecommitdiff
path: root/.github/renovate.json
blob: 5b9d9cddbf1cc83d545733871f5ee33a49c2d5d6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "extends": [
    "config:base",
    ":dependencyDashboard"
  ],
  "packageRules": [
    {
      "matchPackagePatterns": ["^kotlin", "^org.jetbrains.kotlin"],
      "groupName": "kotlin"
    }
  ],
  "regexManagers": [
    {
      "fileMatch": [
        ".kt$"
      ],
      "matchStrings": [
        "KTFMT_VERSION = \"(?<currentValue>.*)\""
      ],
      "datasourceTemplate": "maven",
      "depNameTemplate": "com.facebook:ktfmt"
    }
  ]
}