wip: add linters and formatters

This commit is contained in:
2026-01-11 01:42:18 +00:00
parent 230e76b2d5
commit e86b0de9fa
30 changed files with 1342 additions and 933 deletions

View File

@@ -6,6 +6,10 @@
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"update": "bun scripts/update-specs.ts",
"astro": "astro"
},
@@ -21,9 +25,16 @@
"unified": "^11.0.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@eslint/js": "^9.39.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
}
}