Replies: 1 comment 3 replies
-
Yes this should be doable. Here's a basic example:
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
One of the most complex ESLint rules we have in qwik.dev goes as follows:
() => obj
function inside auseSerializer$()
callobj
there's anupdate()
functiondeserialize()
function, for every identifier that is used as an object for readingWe implement it by detecting the conditions, listing up the identifiers used that aren't function parameters, and then comparing the list.
Is it possible to express this with GritQL?
Beta Was this translation helpful? Give feedback.
All reactions