Skip to content

Commit

Permalink
👷 Fix Glob Pattern in npm Scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jan 23, 2024
1 parent f3d7967 commit c7ef252
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"url": "https://github.com/pcaversaccio/snekmate/issues"
},
"scripts": {
"prettier:check": "npx prettier -c '**/*.{md,sol,js,json,yml,yaml}'",
"prettier:fix": "npx prettier -w '**/*.{md,sol,js,json,yml,yaml}'",
"solhint:check": "npx solhint '**/*.sol'",
"solhint:fix": "npx solhint '**/*.sol' --fix",
"prettier:check": "npx prettier -c \"**/*.{md,sol,js,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{md,sol,js,json,yml,yaml}\"",
"solhint:check": "npx solhint \"**/*.sol\"",
"solhint:fix": "npx solhint \"**/*.sol\" --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && npx eslint --ext .js .",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint --ext .js . --fix"
},
Expand Down

0 comments on commit c7ef252

Please sign in to comment.