-
Notifications
You must be signed in to change notification settings - Fork 32
Database setup #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,10 @@ const nextConfig: NextConfig = { | |
| typescript: { | ||
| ignoreBuildErrors: true, | ||
| }, | ||
| // @ts-ignore | ||
| eslint: { | ||
| ignoreDuringBuilds: true, | ||
| }, | ||
|
Comment on lines
4
to
+10
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check package.json for build/lint/typecheck scripts
echo "=== Checking package.json for build/lint/typecheck scripts ==="
if [ -f package.json ]; then
rg -n "\"(build|lint|typecheck)\"\\s*:" package.json
else
echo "package.json not found"
fi
echo ""
echo "=== Checking .github/workflows for CI checks ==="
# Find and search workflow files
fd -t f '.*\.(yml|yaml)$' .github/workflows 2>/dev/null | head -20 | while read -r file; do
echo "File: $file"
rg -n "lint|eslint|typecheck|tsc|next build|pnpm build|npm run build|yarn build" "$file" 2>/dev/null
done
echo ""
echo "=== Full next.config.ts content (first 50 lines) ==="
if [ -f next.config.ts ]; then
head -50 next.config.ts
fiRepository: adrianhajdin/jsm_bookified Length of output: 734 Build safety gates are effectively disabled with no CI compensation. Both Recommended fix typescript: {
- ignoreBuildErrors: true,
+ ignoreBuildErrors: false,
},
- // `@ts-ignore`
eslint: {
- ignoreDuringBuilds: true,
+ ignoreDuringBuilds: false,
},🤖 Prompt for AI Agents |
||
| images: { remotePatterns: [ | ||
| { protocol: 'https', hostname: 'covers.openlibrary.org' }, | ||
| { protocol: 'https', hostname: 'lspfdyhgsrgsxcju.public.blob.vercel-storage.com' }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: adrianhajdin/jsm_bookified
Length of output: 3218
🏁 Script executed:
Repository: adrianhajdin/jsm_bookified
Length of output: 1915
Apply consistent error handling for
endVoiceSessionacross all call sites.endVoiceSessionreturns{ success: false }on failure instead of throwing, making.catch()handlers ineffective. This pattern appears at lines 107, 185, 214, and 272, silently skipping error handling in all cases. Update all call sites to await the result and check thesuccessflag:📝 Committable suggestion
🤖 Prompt for AI Agents