Skip to content

Commit 02df633

Browse files
committed
style: Auto format astro source files
1 parent d8b0bb5 commit 02df633

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

src/components/Contributors.astro

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ const { type, small } = Astro.props as {
1414
.filter((c) => c.type == type)
1515
.map((contributor) => (
1616
<div class="contributor">
17-
<a href={contributor.url} target="_blank" aria-label={contributor.name}>
17+
<a
18+
href={contributor.url}
19+
target="_blank"
20+
aria-label={contributor.name}
21+
>
1822
<Image src={contributor.icon} alt="" inferSize />
1923
</a>
2024
<span class="name header">{contributor.name}</span>

src/pages/credits.astro

+7-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,19 @@ import Layout from "../layouts/Layout.astro";
2525

2626
<div class="pane">
2727
<div class="section">Past contributors</div>
28-
<p class="blurb">We are ever greatful for past contributions by these developers and wish them all their best on their journey beyond Northstar</p>
28+
<p class="blurb">
29+
We are ever greatful for past contributions by these developers and
30+
wish them all their best on their journey beyond Northstar
31+
</p>
2932
<Contributors type={ContributorType.PAST} small />
3033
</div>
3134

3235
<!-- TODO have a pane for each and just pass the desired stats (weekly/monthly/all) to the component -->
3336
<div class="pane" id="reviewer-scoreboard">
3437
<div class="section">Reviewer Scoreboard</div>
35-
<p class="blurb">Stats for number of reviews performed over certain time durations</p>
38+
<p class="blurb">
39+
Stats for number of reviews performed over certain time durations
40+
</p>
3641
<Reviewers />
3742
</div>
3843

src/pages/index.astro

+5-7
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,16 @@ import Community from "../components/Community.astro";
4242
alt="Discord Server"
4343
/><span>Discord</span></a
4444
>
45-
<a href="/wiki" class="button big"
46-
draggable="false"
45+
<a href="/wiki" class="button big" draggable="false"
4746
><img
4847
src="/assets/icon_wiki.svg"
4948
alt="Northstar Wiki"
5049
/>Wiki</a
5150
>
52-
<a href="/github" class="button big"
53-
draggable="false"
51+
<a href="/github" class="button big" draggable="false"
5452
><img src="/assets/github.svg" alt="GitHub" />GitHub</a
5553
>
56-
<a href="/servers" class="button big"
57-
draggable="false"
54+
<a href="/servers" class="button big" draggable="false"
5855
><img
5956
src="/assets/globe.svg"
6057
alt="Modding Documentation"
@@ -88,7 +85,8 @@ import Community from "../components/Community.astro";
8885
<div class="pane" id="roadmap">
8986
<div class="section">Roadmap</div>
9087
<p style="text-align: center">
91-
Our community is always working on new features and improvements for Northstar.
88+
Our community is always working on new features and improvements for
89+
Northstar.
9290
</p>
9391
<Roadmap />
9492
</div>

0 commit comments

Comments
 (0)