update lint check

This commit is contained in:
Nate Kelley 2025-05-29 09:46:02 -06:00
parent f179ea1f3e
commit 4bce03f7e0
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 5 additions and 1 deletions

View File

@ -56,6 +56,10 @@ const createCspHeader = (isEmbed = false) => {
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
// Disable ESLint during builds since we're using Biome
eslint: {
ignoreDuringBuilds: true
},
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
silenceDeprecations: ['legacy-js-api']

View File

@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"build": "npm run lint:biome && next build",
"start": "next start",
"lint": "npx biome check && next lint",
"lint:biome": "npx biome check",