Skip to content

Commit f2ae98d

Browse files
committed
Fix lint commands
1 parent 343db5f commit f2ae98d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

apps/dashboard/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"dev": "next dev --turbopack",
77
"build": "next build --turbopack",
88
"start": "next start",
9-
"lint": "next lint",
109
"typecheck": "tsc --noEmit"
1110
},
1211
"dependencies": {

apps/database/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
8-
"start": "next start",
9-
"lint": "next lint"
8+
"start": "next start"
109
},
1110
"dependencies": {
1211
"@hookform/resolvers": "^5.1.1",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"build": "turbo run build",
66
"dev": "turbo run dev",
77
"start": "turbo run start",
8-
"lint": "turbo run",
8+
"lint": "npx ultracite@latest lint",
9+
"format": "npx ultracite@latest format",
910
"check-types": "turbo run check-types",
1011
"generate-db": "turbo run generate --filter=@databuddy/db",
1112
"db:studio": "cd packages/db && bun run db:studio",

0 commit comments

Comments
 (0)