You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"ignoreImports": true does not check ES2015 imports (but still checks any use of the imports later in the code except function arguments)
I think the "except function arguments" part should also apply to generic arguments.
import{typePostView_post}from'./__generated__/PostView_post.graphql';import{some_data}from'./data';functionMyComponent(props){// PostView_post causes an error and I'm suggesting it shouldn'tconstpost=useFragment<PostView_post>(graphql` ... `);// some_data does not cause an error as expectedconsole.log(some_data);return<div>{post.message}</div>}
The text was updated successfully, but these errors were encountered:
ESLint documentation on
camelcase
states:I think the "except function arguments" part should also apply to generic arguments.
The text was updated successfully, but these errors were encountered: