Skip to content

Commit 59944b8

Browse files
committed
chore: fix lint error
1 parent 1ce5774 commit 59944b8

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

docs-svelte-kit/src/lib/eslint/MonacoEditor.svelte

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,13 @@
250250
251251
{#await loading}
252252
{#if started}
253-
<div class="eslint-editor-monaco-root eslint-editor-monaco-root--wait" in:loadingTypewriter />
253+
<div
254+
class="eslint-editor-monaco-root eslint-editor-monaco-root--wait"
255+
in:loadingTypewriter
256+
></div>
254257
{/if}
255258
{:then}
256-
<div bind:this={rootElement} class="eslint-editor-monaco-root" />
259+
<div bind:this={rootElement} class="eslint-editor-monaco-root"></div>
257260
{/await}
258261
259262
<style>

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@
9595
"@ota-meshi/eslint-plugin": "^0.17.1",
9696
"@sindresorhus/slugify": "^2.2.1",
9797
"@sveltejs/adapter-static": "^3.0.1",
98-
"@sveltejs/kit": "^2.5.5",
98+
"@sveltejs/kit": "^2.5.6",
9999
"@sveltejs/vite-plugin-svelte": "^3.1.0",
100100
"@types/babel__core": "^7.20.5",
101101
"@types/cross-spawn": "^6.0.6",
102102
"@types/escape-html": "^1.0.4",
103-
"@types/eslint": "^8.56.9",
103+
"@types/eslint": "^8.56.10",
104104
"@types/eslint-scope": "^3.7.7",
105105
"@types/eslint-utils": "^3.0.5",
106106
"@types/eslint-visitor-keys": "^3.3.0",
@@ -116,8 +116,8 @@
116116
"@types/prismjs": "^1.26.3",
117117
"@types/semver": "^7.5.8",
118118
"@types/stylus": "^0.48.42",
119-
"@typescript-eslint/eslint-plugin": "^7.6.0",
120-
"@typescript-eslint/parser": "^7.6.0",
119+
"@typescript-eslint/eslint-plugin": "^7.7.0",
120+
"@typescript-eslint/parser": "^7.7.0",
121121
"@typescript/vfs": "^1.5.0",
122122
"acorn": "^8.11.3",
123123
"assert": "^2.1.0",
@@ -135,21 +135,21 @@
135135
"eslint-plugin-jsonc": "^2.15.1",
136136
"eslint-plugin-markdown": "^4.0.1",
137137
"eslint-plugin-mdx": "^3.1.5",
138-
"eslint-plugin-n": "^17.2.0",
138+
"eslint-plugin-n": "^17.2.1",
139139
"eslint-plugin-node-dependencies": "^0.12.0",
140140
"eslint-plugin-prettier": "^5.1.3",
141141
"eslint-plugin-regexp": "^2.5.0",
142142
"eslint-plugin-svelte": "^2.37.0",
143143
"eslint-plugin-yml": "^1.14.0",
144144
"eslint-scope": "^8.0.1",
145-
"eslint-typegen": "^0.2.2",
145+
"eslint-typegen": "^0.2.3",
146146
"eslint-visitor-keys": "^4.0.0",
147147
"espree": "^10.0.1",
148148
"estree-walker": "^3.0.3",
149149
"globals": "^15.0.0",
150150
"less": "^4.2.0",
151151
"locate-character": "^3.0.0",
152-
"magic-string": "^0.30.9",
152+
"magic-string": "^0.30.10",
153153
"markdown-it-anchor": "^8.6.7",
154154
"markdown-it-container": "^4.0.0",
155155
"markdown-it-emoji": "^3.0.0",
@@ -169,15 +169,15 @@
169169
"stylelint": "~16.3.1",
170170
"stylelint-config-standard": "^36.0.0",
171171
"stylus": "^0.63.0",
172-
"svelte": "^5.0.0-next.102",
172+
"svelte": "^5.0.0-next.108",
173173
"svelte-adapter-ghpages": "0.2.2",
174174
"svelte-i18n": "^4.0.0",
175175
"tslib": "^2.6.2",
176176
"type-coverage": "^2.28.1",
177177
"typescript": "~5.4.5",
178-
"typescript-eslint": "^7.6.0",
178+
"typescript-eslint": "^7.7.0",
179179
"util": "^0.12.5",
180-
"vite": "^5.2.8",
180+
"vite": "^5.2.9",
181181
"vite-plugin-eslint4b": "^0.4.0",
182182
"vite-plugin-svelte-md": "^0.1.7",
183183
"yaml": "^2.4.1"

0 commit comments

Comments
 (0)