From a2364d9c99f0c56af45c97f88048a4859ccaf441 Mon Sep 17 00:00:00 2001 From: Vasudeva Annam Date: Fri, 18 Oct 2024 17:57:23 +0100 Subject: [PATCH] Removing linting rule for .eslintrc.js --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f5d53ba..2e05a3c 100644 --- a/package.json +++ b/package.json @@ -46,8 +46,8 @@ "record": "playwright codegen", "clear:storage": "rimraf playwright/.auth", "allure": "allure generate ./allure-results --clean && allure open ./allure-report", - "lint": "cross-env eslint 'tests/**/*.ts' 'test-setup/**/*.ts' 'playwright.config.ts' '.eslintrc.js'", - "lint:fix": "cross-env eslint 'tests/**/*.ts' 'test-setup/**/*.ts' 'playwright.config.ts' '.eslintrc.js' --fix", + "lint": "cross-env eslint 'tests/**/*.ts' 'test-setup/**/*.ts' 'playwright.config.ts'", + "lint:fix": "cross-env eslint 'tests/**/*.ts' 'test-setup/**/*.ts' 'playwright.config.ts' --fix", "format": "cross-env prettier --write 'tests/**/*.ts' 'test-setup/**/*.ts' 'playwright.config.ts' '.eslintrc.js' '**/*.json' '**/*.md' '!package-lock.json' '!dist/**/*' '!build/**/*'", "prepare": "husky", "postinstall": "playwright install chromium"