minor fixes

This commit is contained in:
Aritra Chatterjee
2024-03-03 08:00:12 +05:30
parent 3a73425cea
commit a5ada2765e
3 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -4,5 +4,5 @@
"singleQuote": false,
"tabWidth": 4,
"useTabs": false,
"printWidth": 150
"printWidth": 120
}

View File

@@ -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.