Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
at-the-vr committed Aug 28, 2024
1 parent 385fd01 commit 57942c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format:ci": "pnpm run biome:write && pnpm run prettier:write",
"biome:write": "biome check --write ./",
"prettier:write": "prettier -w ./"
"biome:write": "biome check --write ./",
"prettier:write": "prettier -w ./"
},
"dependencies": {
"@astrojs/check": "^0.8.3",
Expand Down
6 changes: 2 additions & 4 deletions src/pages/blog/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ const years = Object.keys(posts).sort(
);
const title = "My Blog";
const description =
"A collection of all blogposts that I enjoyed writing";
const description = "A collection of all blogposts that I enjoyed writing";
---

<BaseLayout {title} {description}
>
<BaseLayout {title} {description}>
<section>
<div class="mx-auto max-w-7xl border-x border-b border-white/20">
<div class="gradient-grid mx-auto p-8 lg:pt-28">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import BaseLayout from "@/components/BaseLayout.astro";
import CTA from "@/components/CTA.astro";
import Hero from "@/components/Hero.astro";
import Intro from "@/components/Intro.astro";
import OpenSource from "@/components/OpenSource.astro";
import Projects from "@/components/Projects.astro";
import OpenSource from "@/components/OpenSource.astro"
const title = "Home";
const description =
Expand Down

0 comments on commit 57942c1

Please sign in to comment.