Skip to content

Commit

Permalink
Fix prettier globs (#49)
Browse files Browse the repository at this point in the history
* fix: 🩹 fix prettier globs in package.json

* chore: 🩹 modify prettier glob to make it Windows compatible

* chore: update ignore path glob

---------

Co-authored-by: Paul Razvan Berg <[email protected]>
  • Loading branch information
mariogutval and PaulRBerg authored Mar 27, 2024
1 parent 4266b9a commit 0272adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"build": "forge build",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
Expand Down

0 comments on commit 0272adf

Please sign in to comment.