chore(prettier): use svelteStrictMode

This commit is contained in:
Eric Liu 2020-09-04 16:35:49 -07:00
commit 42b8159b1c
182 changed files with 2020 additions and 1912 deletions

View file

@ -25,10 +25,10 @@
{#if status === 'uploading'}
<Loading
description={iconDescription}
description="{iconDescription}"
{...$$restProps}
small
withOverlay={false} />
withOverlay="{false}" />
{/if}
{#if status === 'edit'}
@ -36,8 +36,8 @@
<WarningFilled16 class="bx--file-invalid" />
{/if}
<Close16
aria-label={iconDescription}
title={iconDescription}
aria-label="{iconDescription}"
title="{iconDescription}"
class="bx--file-close"
{...$$restProps}
on:click
@ -46,8 +46,8 @@
{#if status === 'complete'}
<CheckmarkFilled16
aria-label={iconDescription}
title={iconDescription}
aria-label="{iconDescription}"
title="{iconDescription}"
class="bx--file-complete"
{...$$restProps} />
{/if}