Skip to content

Commit

Permalink
Update eslint rules to disable react/no-unescaped-entities and @next/…
Browse files Browse the repository at this point in the history
…next/no-page-custom-font
  • Loading branch information
Meet57 committed Sep 20, 2024
1 parent 1ae913b commit 2855497
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"extends": "next/core-web-vitals"
}
"extends": "next/core-web-vitals",
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
cache: 'npm'
- run: npm ci
- run: |
touch .env
docker-compose up -d
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
command: npm run dev

pocketbase:
image: pocketbase/pocketbase:latest
image: adrianmusante/pocketbase:latest
volumes:
- ./pb_data:/pb_data # Persist PocketBase data
ports:
Expand Down

0 comments on commit 2855497

Please sign in to comment.