Skip to content

Commit

Permalink
fix prettier glob pattern (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-evans authored May 19, 2020
1 parent 86f86b3 commit 97b30c4
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 @@ -5,8 +5,8 @@
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build && node lib/misc/generate-docs.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
Expand Down

0 comments on commit 97b30c4

Please sign in to comment.