From 85543f8feff61f9a054d496447a8454d0d32ff72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Souchet=20C=C3=A9line?= Date: Wed, 30 Oct 2024 11:21:02 +0100 Subject: [PATCH] ignore data of performance tests --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ac7b68bd59..0a5cfaba65 100644 --- a/package.json +++ b/package.json @@ -75,8 +75,8 @@ "docs": "run-s docs:*", "docs:user": "node scripts/generate-users-documentation.mjs", "docs:api": "typedoc --tsconfig ./tsconfig.typedoc.json src/bpmn-visualization.ts", - "lint": "eslint \"{{dev,scripts,src,test}/**,.}/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0 --quiet --fix", - "lint-check": "eslint \"{{dev,scripts,src,test}/**,.}/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0", + "lint": "eslint \"{{dev,scripts,src,test}/**,.}/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0 --quiet --fix --ignore-pattern 'test/performance/**/data.js'", + "lint-check": "eslint \"{{dev,scripts,src,test}/**,.}/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0 --ignore-pattern 'test/performance/**/data.js'", "test": "run-s test:unit test:integration test:e2e", "test:unit": "jest --runInBand --config=./test/unit/jest.config.cjs", "test:unit:coverage": "npm run test:unit -- --coverage",