From e30919c1b28e1d8a45345d90366f556b56e41b71 Mon Sep 17 00:00:00 2001 From: thomasgross Date: Wed, 8 Jan 2025 13:02:58 +0100 Subject: [PATCH] fix: update markdown lint fix command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8f31930c..96673cd3f 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "lint:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --max-warnings 0 --cache --cache-location \".cache/eslint/\"", "lint:js:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\"", "lint:markdown": "markdownlint-cli2", - "lint:markdown:fix": "markdownlint-cli2-fix", + "lint:markdown:fix": "markdownlint-cli2 --fix \"**/*.md'\"", "lint:scss": "stylelint \"./src/**/*.scss\"", "lint:scss:fix": "stylelint --fix \"./src/**/*.scss\"", "lint": "yarn lint:js && yarn lint:scss && yarn lint:markdown",