From 679b4992a639ec35a099c89f596aa1b2eb1d01f6 Mon Sep 17 00:00:00 2001 From: nerdyman Date: Tue, 26 Apr 2022 10:29:56 +0100 Subject: [PATCH] style: ignore autogenerated files in prettier, fix linter issues in test util --- .prettierignore | 3 +++ test/baseFixtures.ts | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/.prettierignore b/.prettierignore index 69ecbb4..892f909 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,7 @@ node_modules/ dist/ +coverage/ +.nyc_output/ *.ignore pnpm-lock.yaml +.pnpm-store diff --git a/test/baseFixtures.ts b/test/baseFixtures.ts index 3c3cabb..6314e74 100644 --- a/test/baseFixtures.ts +++ b/test/baseFixtures.ts @@ -1,3 +1,9 @@ +/* eslint @typescript-eslint/no-explicit-any: 0 */ + +/** + * @see https://github.com/mxschmitt/playwright-test-coverage + */ + import * as fs from 'fs'; import * as path from 'path'; import * as crypto from 'crypto';