Skip to content

Commit aa517d2

Browse files
committed
chore: Disable prettier.
1 parent 8cd909f commit aa517d2

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

eslint.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// https://github.com/sveltejs/eslint-plugin-svelte/issues/732
2-
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
32
import eslintPluginSvelte from 'eslint-plugin-svelte';
43
import js from '@eslint/js';
54
import svelteParser from 'svelte-eslint-parser';
@@ -15,7 +14,6 @@ export default [
1514
js.configs.recommended,
1615
...tsEslint.configs.strict,
1716
...eslintPluginSvelte.configs['flat/recommended'],
18-
eslintPluginPrettierRecommended, // must be last to override conflicting rules.
1917
{
2018
languageOptions: {
2119
globals: {

src/routes/donate/+page.svelte

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,35 @@
66

77
<div class="md:hidden">
88
<p>
9-
Join us to support cutting-edge research, student development, and impactful open source software. <a class="font-semibold" href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008">Make a gift</a> to the Interactive Data Lab!
9+
Join us to support cutting-edge research, student development, and impactful open source
10+
software. <a
11+
class="font-semibold"
12+
href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008">Make a gift</a
13+
> to the Interactive Data Lab!
1014
</p>
1115
<div class="text-center pt-6 pb-8">
1216
<a
1317
href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008"
14-
class="rounded-md bg-violet-800 px-3.5 py-2.5 text-2xl font-semibold text-white shadow-xs focus-visible:outline-2 focus-visible:outline-offset-2 hover:bg-violet-100 focus-visible:outline-violet">Donate Now</a>
18+
class="rounded-md bg-violet-800 px-3.5 py-2.5 text-2xl font-semibold text-white shadow-xs focus-visible:outline-2 focus-visible:outline-offset-2 hover:bg-violet-100 focus-visible:outline-violet"
19+
>Donate Now</a
20+
>
1521
</div>
1622
</div>
1723

1824
<div class="hidden md:flex flex py-5 items-center">
1925
<div class="w-48 flex-none text-center">
2026
<a
2127
href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008"
22-
class="rounded-md bg-violet-800 px-3.5 py-2.5 text-lg font-semibold text-white shadow-xs focus-visible:outline-2 focus-visible:outline-offset-2 hover:bg-violet-100 focus-visible:outline-violet">Donate Now</a>
28+
class="rounded-md bg-violet-800 px-3.5 py-2.5 text-lg font-semibold text-white shadow-xs focus-visible:outline-2 focus-visible:outline-offset-2 hover:bg-violet-100 focus-visible:outline-violet"
29+
>Donate Now</a
30+
>
2331
</div>
2432
<div class="flex-auto pr-10">
25-
Join us to support cutting-edge research, successful students, and impactful open source software. <a class="font-semibold" href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008">Make a gift</a> to the Interactive Data Lab!
33+
Join us to support cutting-edge research, student development, and impactful open source
34+
software. <a
35+
class="font-semibold"
36+
href="https://www.washington.edu/giving/make-a-gift/?page=make&code=FND-152008">Make a gift</a
37+
> to the Interactive Data Lab!
2638
</div>
2739
</div>
2840

0 commit comments

Comments
 (0)