add prettier scripts

This commit is contained in:
Nayan Sawyer
2025-06-11 15:29:09 -04:00
parent 88aaa26346
commit 70ed7fda73
2 changed files with 10 additions and 36 deletions

View File

@@ -6,7 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,html}\""
},
"dependencies": {
"react": "^19.0.0",
@@ -24,4 +26,4 @@
"eslint-config-next": "15.3.3",
"@eslint/eslintrc": "^3"
}
}
}