Skip to content

Commit 731ed4f

Browse files
chore(deps): update @biomejs/biome to v2.3.5 (#535)
* chore(deps): update @biomejs/biome to v2.3.5 * fix lint Signed-off-by: Adam Setch <[email protected]> * fix lint Signed-off-by: Adam Setch <[email protected]> --------- Signed-off-by: Adam Setch <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adam Setch <[email protected]>
1 parent 71c336e commit 731ed4f

18 files changed

+54
-59
lines changed

astro.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { defineConfig } from 'astro/config';
22
import icon from 'astro-icon';
3-
43
import tailwindcss from '@tailwindcss/vite';
54

65
// https://astro.build/config

biome.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.5/schema.json",
33
"assist": {
44
"actions": {
55
"source": {
@@ -8,13 +8,9 @@
88
"options": {
99
"groups": [
1010
["astro:*", "*astro-*", "astro*/*"],
11-
":BLANK_LINE:",
1211
":PACKAGE:",
13-
":BLANK_LINE:",
1412
["~/constants"],
15-
":BLANK_LINE:",
1613
":ALIAS:",
17-
":BLANK_LINE:",
1814
"**"
1915
]
2016
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"tailwindcss-motion": "1.1.1"
6565
},
6666
"devDependencies": {
67-
"@biomejs/biome": "2.3.4",
67+
"@biomejs/biome": "2.3.5",
6868
"husky": "9.1.7"
6969
},
7070
"packageManager": "[email protected]",

pnpm-lock.yaml

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/DownloadButton.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export interface Props {
1010
1111
const { item } = Astro.props;
1212
---
13+
1314
<a
1415
href={item.url}
1516
class:list={[

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
import { Icon } from 'astro-icon/components';
3-
43
import { siteMetadata, URLs } from '~/constants';
54
65
const { currentPathname } = Astro.props;
76
const isHomepage = currentPathname === '/';
87
---
8+
99
<div
1010
class:list={[
1111
"bg-gitify-footer text-white text-sm py-10 px-3",

src/components/GitHubRepo.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
---
22
import { Icon } from 'astro-icon/components';
3-
43
import { Octokit } from 'octokit';
5-
64
import { siteMetadata, URLs } from '~/constants';
7-
85
import type { RepoStats } from '~/types';
96
107
const octokit = new Octokit();
@@ -45,6 +42,7 @@ const loadRepoStats = async (): Promise<RepoStats> => {
4542
4643
const { forks, stars, latestReleaseName } = await loadRepoStats();
4744
---
45+
4846
<a
4947
href={URLs.GITHUB.REPO}
5048
target="_blank"

src/components/GoogleAnalytics.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { siteMetadata } from '../constants.ts';
44
const GTAG_ID = siteMetadata.google.gtag;
55
const GTAG_SRC = `https://www.googletagmanager.com/gtag/js?id=${GTAG_ID}`;
66
---
7+
78
<!-- Google tag (gtag.js) -->
89
<script async src={GTAG_SRC}></script>
910
<script>

src/components/Hero.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
import { Image } from 'astro:assets';
3-
43
import { siteMetadata } from '~/constants';
5-
64
import notifications from '~/assets/notifications.png';
75
import LatestRelease from '~/components/LatestRelease.astro';
86
import Logo from '~/components/Logo.astro';
97
---
8+
109
<div class="bg-gitify-hero">
1110
<div
1211
class="container flex flex-col md:flex-row lg:items-center max-w-5xl mx-auto px-12 py-8 lg:py-16"

src/components/LatestRelease.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
---
22
import { Icon } from 'astro-icon/components';
3-
43
import { format } from 'date-fns';
54
import { Octokit } from 'octokit';
6-
75
import { siteMetadata, URLs } from '~/constants';
8-
96
import DownloadButton from '~/components/DownloadButton.astro';
107
import type {
118
DownloadLink,
@@ -99,6 +96,7 @@ const loadInitialData = async (): Promise<HeroData> => {
9996
10097
const { downloadLinks, version, releaseDate } = await loadInitialData();
10198
---
99+
102100
<div class="text-sm mt-4">
103101
{
104102
version ? (

0 commit comments

Comments
 (0)