From d85f09cbed5f3d2501f791e689011ae127df1cbb Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sun, 9 Jan 2022 20:33:53 +0100 Subject: build: Add prettier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit eslint will also enforce prettier rules, so there is no need to call prettier separately in CI. Signed-off-by: Kristóf Marussy --- jest.config.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'jest.config.js') diff --git a/jest.config.js b/jest.config.js index c631fdd..174322a 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,11 +1,7 @@ /** @type {import('@jest/types').Config.InitialOptions} */ export default { - projects: [ - '/packages/*', - ], + projects: ['/packages/*'], /** @type {'babel' | 'v8'} */ coverageProvider: 'v8', - collectCoverageFrom: [ - 'src/**/*.{ts,tsx}', - ], + collectCoverageFrom: ['src/**/*.{ts,tsx}'], }; -- cgit v1.2.3-54-g00ecf