Skip to content

Commit d1aa157

Browse files
committed
chore: lint
1 parent 36f709c commit d1aa157

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

packages/query/e2e/basic.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from "@playwright/test";
22
import { type PreviewServer, preview } from "astro";
3-
import { getPath, generatePort } from "./utils";
3+
import { generatePort, getPath } from "./utils";
44

55
const fixtureRoot = new URL("../fixtures/basic", import.meta.url).pathname;
66
let previewServer: PreviewServer;

packages/query/e2e/view-transitions.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { expect, Page, test } from "@playwright/test";
1+
import { Page, expect, test } from "@playwright/test";
22
import { type PreviewServer, preview } from "astro";
3-
import { getPath, generatePort } from "./utils";
3+
import { generatePort, getPath } from "./utils";
44

55
const fixtureRoot = new URL("../fixtures/view-transitions", import.meta.url)
66
.pathname;

packages/query/fixtures/view-transitions/.astro/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"_variables": {
33
"lastUpdateCheck": 1722171998489
44
}
5-
}
5+
}

packages/query/fixtures/view-transitions/src/components/Counter.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
type Props = {
3-
initialCount?: number
4-
}
3+
initialCount?: number;
4+
};
55
6-
const {initialCount = 0} = Astro.props;
6+
const { initialCount = 0 } = Astro.props;
77
---
88

99
<RootElement data={{ initialCount }}>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/// <reference types="astro/client" />
1+
/// <reference types="astro/client" />

packages/query/fixtures/view-transitions/src/layouts/Layout.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import { ViewTransitions } from "astro:transitions";
33
44
type Props = {
5-
title: string;
6-
}
5+
title: string;
6+
};
77
8-
const {title} = Astro.props;
8+
const { title } = Astro.props;
99
---
1010

1111
<!DOCTYPE html>

packages/query/fixtures/view-transitions/src/pages/page-1.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import Counter from '../components/Counter.astro';
3-
import Layout from '../layouts/Layout.astro';
2+
import Counter from "../components/Counter.astro";
3+
import Layout from "../layouts/Layout.astro";
44
---
55

66
<Layout title="Page 1">

packages/query/fixtures/view-transitions/src/pages/page-2.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import Counter from '../components/Counter.astro';
3-
import Layout from '../layouts/Layout.astro';
2+
import Counter from "../components/Counter.astro";
3+
import Layout from "../layouts/Layout.astro";
44
---
55

66
<Layout title="Page 2">

0 commit comments

Comments
 (0)