Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/format-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
node-version: "20"

- name: Run Prettier
run: npx prettier --write "frontend/**/*.{html,css,js}" "scripts/**/*.js" "server.js"
run: npx prettier --write .

- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock.json
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ We use Prettier to enforce consistent code style across the project. Our automat
Before submitting your Pull Request, please run the following command in the root of the repository to automatically format all your changes:

```bash
npx prettier --write "frontend/**/*.{html,css,js}" "scripts/**/*.js" "server.js"
npx prettier --write .
```

### Frontend Changes
Expand Down
Loading