Skip to content

Commit 939bf07

Browse files
committed
fix: update formatting and structure in various files
- Added missing newlines in package.json and .prettierignore. - Refactored frameworkEditorSchemas.js and seed.js for improved readability and consistency. - Updated index.js and types.js to maintain consistent use of single quotes and formatting. - Enhanced error handling and validation messages in seed.js for better debugging.
1 parent 5e0de08 commit 939bf07

3 files changed

Lines changed: 28 additions & 2 deletions

File tree

.prettierignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Dependencies
2+
node_modules/
3+
.turbo/
4+
5+
# Build outputs
6+
dist/
7+
.next/
8+
generated/
9+
10+
# Logs
11+
*.log
12+
13+
# Environment files
14+
.env*
15+
16+
# Database specific files to exclude from formatting
17+
packages/db/prisma/seed/frameworkEditorSchemas.js
18+
packages/db/prisma/seed/seed.js
19+
packages/db/src/index.js
20+
packages/db/src/types.js
21+
22+
# Other generated files
23+
coverage/
24+
.DS_Store

apps/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@
119119
"trigger:dev": "npx trigger.dev@latest dev",
120120
"typecheck": "tsc --noEmit"
121121
}
122-
}
122+
}

packages/db/.prettierignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ docker
1111
prisma/
1212
# Generated Prisma client files
1313
src/index.js
14-
src/types.js
14+
src/types.js
15+
packages/db/src/**
16+
packages/db/prisma/**

0 commit comments

Comments
 (0)