chore: update linting script for next.js 16

This commit is contained in:
2025-12-11 19:16:24 -05:00
parent 5c9d564c6d
commit 962f2ad7ee
4 changed files with 47 additions and 52 deletions

View File

@@ -6,14 +6,13 @@
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"update-pdfs": "bun scripts/update-pdfs.js"
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",