chore: configure eslint with typescript and prettier integration

This commit is contained in:
lila 2026-03-20 14:18:18 +01:00
parent 3dfb75ea83
commit 22bb8a1e4c
4 changed files with 811 additions and 3 deletions

View file

@ -5,11 +5,16 @@
"private": true,
"scripts": {
"dev": "concurrently \"pnpm --filter @glossa/web run dev\" \"pnpm --filter @glossa/api run dev\"",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^9.2.1",
"typescript": "^5.9.3"
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
}
}