Skip to content

Commit 13d3318

Browse files
push lint f ixes
1 parent a5272cb commit 13d3318

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

apps/demo/src/app.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
<meta charset="utf-8" />
55
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
66
<meta name="viewport" content="width=device-width" />
7-
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
8-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css">
7+
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css" />
8+
<link
9+
rel="stylesheet"
10+
href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css"
11+
/>
912
%sveltekit.head%
1013
</head>
1114
<body data-sveltekit-preload-data="hover">

apps/demo/svelte.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ const config = {
1313
markdoc({
1414
layouts: {
1515
default: join(dirname(fileURLToPath(import.meta.url)), './src/lib/Layout.svelte'),
16-
alternative: join(dirname(fileURLToPath(import.meta.url)), './src/lib/LayoutAlternative.svelte')
17-
}
16+
alternative: join(
17+
dirname(fileURLToPath(import.meta.url)),
18+
'./src/lib/LayoutAlternative.svelte',
19+
),
20+
},
1821
}),
1922
],
2023
extensions: ['.markdoc', '.svelte'],

packages/process/src/processor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const processor = (
2424
const code = transformer({
2525
content,
2626
nodes,
27-
layouts
27+
layouts,
2828
});
2929

3030
return {

0 commit comments

Comments
 (0)