mirror of
https://github.com/alecthomas/chroma.git
synced 2025-01-28 03:29:41 +02:00
76039a532f
* chore(deps): update all non-major dependencies * fix: fixes for test and lint Test was slow because we were deep-comparing lexers. This is unnecessary as we can just shallow compare. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alec Thomas <alec@swapoff.org>
19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
{
|
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
|
extends: [
|
|
"config:recommended",
|
|
":semanticCommits",
|
|
":semanticCommitTypeAll(chore)",
|
|
":semanticCommitScope(deps)",
|
|
"group:allNonMajor",
|
|
"schedule:earlyMondays", // Run once a week.
|
|
],
|
|
packageRules: [
|
|
{
|
|
matchPackageNames: ["golangci-lint"],
|
|
matchManagers: ["hermit"],
|
|
enabled: false,
|
|
},
|
|
],
|
|
}
|