Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraviolet10 committed Mar 3, 2024
1 parent 3a73425 commit a5ada27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@ jobs:
run: mkdir -p packages/contracts/out && echo "{}" > packages/contracts/out/deployment.json
- run: make setup
- run: make check
- name: Check formatting with Prettier
run: cd packages/webapp && make check
2 changes: 1 addition & 1 deletion packages/webapp/.prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"singleQuote": false,
"tabWidth": 4,
"useTabs": false,
"printWidth": 150
"printWidth": 120
}
3 changes: 2 additions & 1 deletion packages/webapp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ lint:

# Runs code quality checks.
check:
pnpm eslint . && pnpm prettier --check "**/*.{js,jsx,ts,tsx,json,css}"
pnpm eslint .
pnpm prettier --check "**/*.{js,jsx,ts,tsx,json,css}"
.PHONY: check

# Runs prettier formatting across webapp files with specified file extensions.
Expand Down

0 comments on commit a5ada27

Please sign in to comment.