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
Sample code
<h1 bind:innerHTML={innerHTML} contenteditable="true" /> <h1 innerHTML={innerHTML}/>
Expected output with svelteAllowShorthand: false
svelteAllowShorthand: false
Real output:
<h1 bind:innerHTML contenteditable="true" /> <h1 innerHTML={innerHTML}/>
Reproduction made using starting svelte-kit project
look at src/routes/+page.svelte and run npm run format
src/routes/+page.svelte
npm run format
The text was updated successfully, but these errors were encountered:
(fix) respect strict mode and shorthand options when formatting bindings
8639322
Fixes sveltejs#321
(fix) respect strict mode and shorthand options when formatting bindi…
14da6fb
…ngs (#325) Fixes #321
Successfully merging a pull request may close this issue.
Sample code
Expected output with
svelteAllowShorthand: false
Real output:
Reproduction made using starting svelte-kit project
look at
src/routes/+page.svelte
and runnpm run format
The text was updated successfully, but these errors were encountered: