Skip to content

Commit

Permalink
svelte: Remove svelteStrictMode
Browse files Browse the repository at this point in the history
  • Loading branch information
laymonage committed Dec 15, 2024
1 parent 8a60a0c commit 20ee8e2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 80,
"svelteStrictMode": true,
"svelteAllowShorthand": false
}
30 changes: 15 additions & 15 deletions svelte/src/lib/Giscus.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@

{#if mounted}
<giscus-widget
id="{id}"
host="{host}"
repo="{repo}"
repoid="{repoId}"
category="{category}"
categoryid="{categoryId}"
mapping="{mapping}"
term="{term}"
strict="{strict}"
reactionsenabled="{reactionsEnabled}"
emitmetadata="{emitMetadata}"
inputposition="{inputPosition}"
theme="{theme}"
lang="{lang}"
loading="{loading}"
id={id}
host={host}
repo={repo}
repoid={repoId}
category={category}
categoryid={categoryId}
mapping={mapping}
term={term}
strict={strict}
reactionsenabled={reactionsEnabled}
emitmetadata={emitMetadata}
inputposition={inputPosition}
theme={theme}
lang={lang}
loading={loading}
></giscus-widget>
{/if}

0 comments on commit 20ee8e2

Please sign in to comment.