From 73fa969eaa927b787d7ad43a90370d488ff504a9 Mon Sep 17 00:00:00 2001 From: Vincent Fretin Date: Mon, 3 Jun 2024 18:59:44 +0200 Subject: [PATCH] fix lint:fix command to use the same args as lint command to work on Windows --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 12f6d92da..f9395a49a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "dist": "webpack --config webpack.prod.config.js --progress", "dist:staging": "cross-env DEPLOY_ENV=development webpack --config webpack.prod.config.js --progress", "lint": "eslint --ext .js,.jsx src", - "lint:fix": "eslint 'src/**/*.js' 'src/**/*.jsx' --fix", + "lint:fix": "eslint --ext .js,.jsx --fix src", "prefirebase": "cp -R assets public && cp -R ui_assets public && cp index.html public && cp -R dist public", "prepare": "husky install", "prepublish": "npm run dist",