Skip to content
This repository was archived by the owner on May 31, 2026. It is now read-only.

Commit 21691e3

Browse files
committed
fixL issues
1 parent 267c8d4 commit 21691e3

9 files changed

Lines changed: 2835 additions & 939 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@ jobs:
1414
- name: Lint project
1515
run: pnpm run lint:ci
1616

17+
- name: Prettier check
18+
run: pnpm run format:check
19+
20+
- name: Astro Check
21+
run: pnpm run check
22+
1723
- name: Build project
1824
run: pnpm run build

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"check": "astro check",
1212
"lint": "biome check",
1313
"lint:ci": "biome ci",
14-
"lint:fix": "biome check --write ."
14+
"lint:fix": "biome check --write .",
15+
"format": "prettier --write .",
16+
"format:check": "prettier --check ."
1517
},
1618
"dependencies": {
1719
"@astrojs/sitemap": "^3.5.0",

0 commit comments

Comments
 (0)