added a linter and tried it out. that was not fun

This commit is contained in:
2026-05-03 23:03:02 +02:00
parent 0fb1676b72
commit 3871f3f61f
6 changed files with 1212 additions and 15 deletions

View File

@@ -9,7 +9,8 @@
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"lint": "eslint ."
},
"dependencies": {
"@astrojs/react": "^5.0.4",
@@ -24,6 +25,11 @@
"vite": "^6.4.2"
},
"devDependencies": {
"@types/node": "^25.6.0"
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"typescript-eslint": "^8.59.1"
}
}