Skip to content

Commit

Permalink
chore(prettier): Use double quotes to avoid issues with windows
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed Oct 29, 2019
1 parent 5f76433 commit 691bea0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"dist": "npm run compile && webpack --config ./config/webpack.web.config.js",
"jscpd": "jscpd -p src -r json -o jscpd.json",
"lint": "npm run lint:prettier:ts && npm run lint:prettier:js && tslint -c tslint.json '{src,test,examples}/**/*.ts' -e '**/node_modules/**/*.ts'",
"lint:fix": "prettier --parser typescript --write '{src,test,examples}/**/*.ts' && prettier --write '{src,test,examples}/**/*.js'",
"lint:prettier:ts": "prettier --parser typescript --check '{src,test,examples}/**/*.ts'",
"lint:prettier:js": "prettier --check '{src,test,examples}/**/*.js'",
"lint:fix": "prettier --parser typescript --write \"{src,test,examples}/**/*.ts\" && prettier --write \"{src,test,examples}/**/*.js\"",
"lint:prettier:ts": "prettier --parser typescript --check \"{src,test,examples}/**/*.ts\"",
"lint:prettier:js": "prettier --check \"{src,test,examples}/**/*.js\"",
"postdist": "npm t",
"predist": "npm run clean && npm run lint && npm run jscpd",
"release": "standard-version",
Expand Down

0 comments on commit 691bea0

Please sign in to comment.