Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
2b5d207f
Unverified
Commit
2b5d207f
authored
11 months ago
by
Cam Saul
Committed by
GitHub
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Add kondo hook so LSP can jump to driver definition (#41856)
parent
7ed6b66d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.clj-kondo/config.edn
+1
-0
1 addition, 0 deletions
.clj-kondo/config.edn
.clj-kondo/hooks/metabase/driver.clj
+18
-0
18 additions, 0 deletions
.clj-kondo/hooks/metabase/driver.clj
with
19 additions
and
0 deletions
.clj-kondo/config.edn
+
1
−
0
View file @
2b5d207f
...
...
@@ -527,6 +527,7 @@
metabase.db.schema-migrations-test.impl/test-migrations
hooks.metabase.db.schema-migrations-test.impl/test-migrations
metabase.dashboard-subscription-test/with-link-card-fixture-for-dashboard
hooks.common/let-second
metabase.driver.bigquery-cloud-sdk-test/calculate-bird-scarcity
hooks.metabase.query-processor-test.expressions-test/calculate-bird-scarcity
metabase.driver/register!
hooks.metabase.driver/register!
metabase.legacy-mbql.schema.macros/defclause
hooks.metabase.legacy-mbql.schemas.macros/defclause
metabase.lib.schema.mbql-clause/define-mbql-clause
hooks.metabase.lib.schema.mbql-clause/define-mbql-clause
metabase.lib.schema.mbql-clause/define-catn-mbql-clause
hooks.metabase.lib.schema.mbql-clause/define-mbql-clause
...
...
This diff is collapsed.
Click to expand it.
.clj-kondo/hooks/metabase/driver.clj
0 → 100644
+
18
−
0
View file @
2b5d207f
(
ns
hooks.metabase.driver
(
:require
[
clj-kondo.hooks-api
:as
api
]))
(
defn
register!
"Register the driver keyword so LSP can jump to it."
[
x
]
(
letfn
[(
update-driver-keyword
[
k
]
(
api/reg-keyword!
k
'metabase.driver/register!
))
(
update-children
[[
_register!
k
:as
children
]]
(
if
(
api/keyword-node?
k
)
(
update
(
vec
children
)
1
update-driver-keyword
)
children
))
(
update-node
[
node
]
(
if
(
api/list-node?
node
)
(
update
node
:children
update-children
)
node
))]
(
update
x
:node
update-node
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment