We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I often use exports like this:
export const [encoding, setEncoding] = createSignal(false) export const [recording, setRecording] = createSignal(false)
It's a pretty common pattern in SolidJS.
Auto Import parses these exports incorrectly, showing them with a leading square bracket in the autocomplete suggestions:
The text was updated successfully, but these errors were encountered:
Also, the second element of the tuple (setXYZ) is never picked up either.
setXYZ
Sorry, something went wrong.
No branches or pull requests
I often use exports like this:
It's a pretty common pattern in SolidJS.
Auto Import parses these exports incorrectly, showing them with a leading square bracket in the autocomplete suggestions:
The text was updated successfully, but these errors were encountered: