chore: configure biome for linting and formatting

This commit is contained in:
Ilia Mashkov
2026-04-23 20:40:11 +03:00
parent 9c139adbf5
commit 8aff27f8ac
4 changed files with 157 additions and 1 deletions
+7 -1
View File
@@ -6,7 +6,12 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"lint:ci": "biome lint .",
"format:ci": "biome format .",
"check:ci": "biome check .",
"test": "vitest run",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
@@ -20,6 +25,7 @@
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@chromatic-com/storybook": "^5.1.2",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",