From b874ea8b28d8ea8fc261a1ca2b843249003bd447 Mon Sep 17 00:00:00 2001 From: Adam Stachowicz Date: Tue, 26 Apr 2022 01:37:20 +0200 Subject: [PATCH] Add missing lint-fix:style command --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 3096dfdb0..764fb0f9c 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .", "lint-fix:js": "eslint --ext \".js,.vue\" --fix --ignore-path .gitignore .", "lint:style": "stylelint \"**/*.{vue,css,scss}\" --ignore-path .gitignore", + "lint-fix:style": "stylelint \"**/*.{vue,css,scss}\" --fix --ignore-path .gitignore", "lint": "npm run lint:js && npm run lint:style", "dev": "concurrently -k -r \"wait-on tcp:3000 && npm run start-server-dev \" \"npm run start-frontend-dev\"", "start-frontend-dev": "cross-env NODE_ENV=development vite --host --config ./config/vite.config.js",