Skip to content

Commit

Permalink
chore: ignore mdx files in prettierignore
Browse files Browse the repository at this point in the history
  • Loading branch information
alessbell committed Sep 22, 2023
1 parent 1024399 commit ed72fe8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ jobs:
run: bun install
- name: Lint
run: bun run lint
- name: Prettier check
run: bun run format:check
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ public
node_modules
tsconfig.json
.vscode
coverage
coverage
*.mdx
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"build:analyze": "ANALYZE=true npm run build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src"
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@headlessui/react": "1.7.17",
Expand Down

1 comment on commit ed72fe8

@vercel
Copy link

@vercel vercel bot commented on ed72fe8 Sep 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.