Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
dist
build
.next
coverage
*.min.js
pnpm-lock.yaml
**/prisma/migrations
**/prisma/client
20 changes: 20 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 80,
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrder": [
"^react(-dom)?$",
"^react-",
"^next",
"^@?\\w",
"^@repo/",
"^@/",
"^\\.\\./",
"^\\./"
],
"importOrderSeparation": false,
"importOrderSortSpecifiers": true
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY packages/eslint-config/package.json ./packages/eslint-config/
COPY packages/typescript-config/package.json ./packages/typescript-config/
COPY packages/ui/package.json ./packages/ui/

RUN pnpm install --frozen-lockfile
RUN timeout 60 pnpm install --frozen-lockfile

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY packages/eslint-config/package.json ./packages/eslint-config/
COPY packages/typescript-config/package.json ./packages/typescript-config/
COPY packages/ui/package.json ./packages/ui/

RUN pnpm install --frozen-lockfile
RUN timeout 60 pnpm install --frozen-lockfile

COPY . .

Expand Down
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
- Added ESLint configurations for all packages and apps
- Updated TypeScript configurations across the monorepo
- Consolidated `@types/react` version overrides for consistency
- Added Prettier configuration with automatic import sorting
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"version": "0.10.3",
"version": "0.10.4",
"name": "letterspace",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"check-types": "turbo check-types",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format": "prettier --write .",
"knip": "knip"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^24.0.3",
"bun-types": "^1.2.17",
"knip": "^5.77.1",
Expand Down
Loading