From 4266a3ff434d6460869d52be98dcd997adf105ce Mon Sep 17 00:00:00 2001 From: nicholai Date: Thu, 9 Oct 2025 04:56:40 -0600 Subject: [PATCH] skipped linting for test deployments --- bandit-runner-app/next.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bandit-runner-app/next.config.ts b/bandit-runner-app/next.config.ts index a266256..0c83ef8 100644 --- a/bandit-runner-app/next.config.ts +++ b/bandit-runner-app/next.config.ts @@ -2,6 +2,12 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + eslint: { + ignoreDuringBuilds: true, + }, + typescript: { + ignoreBuildErrors: true, + }, }; export default nextConfig;