generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: simplify use of NewExtractor and NewDeclExtractor (#1819)
Just by using generics to create unique Fact types, removing some boilerplate.
- Loading branch information
1 parent
22f94f7
commit 0fa133e
Showing
12 changed files
with
86 additions
and
110 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
.lefthook-1.6.16.pkg | ||
.lefthook-1.6.14.pkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: [ | ||
"config:recommended", | ||
":semanticCommits", | ||
":semanticCommitTypeAll(chore)", | ||
":semanticCommitScope(deps)", | ||
"group:allNonMajor", | ||
"schedule:earlyMondays", | ||
], | ||
packageRules: [ | ||
{ | ||
matchUpdateTypes: ["minor", "patch"], | ||
automerge: true, | ||
}, | ||
{ | ||
matchPackageNames: [ | ||
"jbr", | ||
"ktfmt", | ||
"golangci-lint", | ||
"svu", | ||
"lefthook", // Everything after 1.6.14 is broken | ||
], | ||
matchManagers: ["hermit"], | ||
enabled: false, | ||
}, | ||
{ | ||
matchFileNames: ["**/testdata/**/go.mod"], | ||
enabled: false, | ||
}, | ||
{ | ||
matchPackageNames: ["eslint", "codemirror"], | ||
enabled: false, | ||
paths: ["frontend/**", "extensions/**"], | ||
}, | ||
{ | ||
matchPackageNames: ["connectrpc.com/connect"], | ||
enabled: false, | ||
}, | ||
], | ||
} |