Replies: 1 comment 1 reply
-
I think this will be addressed by #4233. Note that |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to be able to configure useExplicitType such that it ignores anonymous functions.
For example:
throws:
Missing return type on function
lint/nursery/useExplicitTypeI would like to configure
useExplicitType
like this:to disable this error.
For instance, this is handy for something like:
where Biome complains about:
{ type: () => Int }
.And it is very ugly to type it like this:
{ type: (): GraphQLScalarType => Int }
Beta Was this translation helpful? Give feedback.
All reactions