From 56d6360ed96e1f06d5face867181e5555468ac60 Mon Sep 17 00:00:00 2001 From: Mehtab Singh Date: Fri, 31 Jan 2025 18:47:37 +0530 Subject: [PATCH] fix: corrected the path of 'lint:fix' - now it points the ./eslintrc correctly --- packages/multi-parser/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/multi-parser/package.json b/packages/multi-parser/package.json index 4755b5087..0f2ea5b9e 100644 --- a/packages/multi-parser/package.json +++ b/packages/multi-parser/package.json @@ -32,7 +32,7 @@ "test": "npm run test:unit", "test:unit": "cross-env CI=true jest --coverage", "lint": "eslint --max-warnings 0 --config ../../.eslintrc --ignore-path ../../.eslintignore .", - "lint:fix": "eslint --max-warnings 0 --config .../../eslintrc --ignore-path ../../.eslintignore . --fix", + "lint:fix": "eslint --max-warnings 0 --config ../../.eslintrc --ignore-path ../../.eslintignore . --fix", "generate:readme:toc": "markdown-toc -i \"../../README.md\"", "generate:assets": "npm run generate:readme:toc", "bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",