From bdb158918a0de7c21d0ed72d241d39666b68dd72 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 5 Jun 2021 15:36:25 +0000 Subject: [PATCH 1/2] chore(deps): update dependency @tophat/eslint-config to v0.9.0 --- package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 152194c..e404118 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "types:watch": "yarn types --watch" }, "devDependencies": { - "@tophat/eslint-config": "^0.7.0", + "@tophat/eslint-config": "0.9.0", "@types/jest": "26.0.23", "@types/node": "14.17.2", "@typescript-eslint/eslint-plugin": "^4.26.0", diff --git a/yarn.lock b/yarn.lock index 41a723f..5d7cdd5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -723,20 +723,20 @@ __metadata: languageName: node linkType: hard -"@tophat/eslint-config@npm:^0.7.0": - version: 0.7.0 - resolution: "@tophat/eslint-config@npm:0.7.0" +"@tophat/eslint-config@npm:0.9.0": + version: 0.9.0 + resolution: "@tophat/eslint-config@npm:0.9.0" peerDependencies: - eslint: ">=6.0.0" - eslint-config-prettier: ">=6.0.0" + eslint: ">=7.0.0" + eslint-config-prettier: ">=8.0.0" eslint-plugin-import: ">=2.18.0" - eslint-plugin-jest: ">=23.0.0" + eslint-plugin-jest: ">=24.1.5" eslint-plugin-jsx-a11y: ">=6.0.0" eslint-plugin-prettier: ">=3.0.0" eslint-plugin-react: ">=7.0.0" eslint-plugin-react-hooks: ">=2.0.0" - prettier: ">=1.0.0" - checksum: e78b4d67367686a8ba7fd32b784cd2481e6f121019178ab26ab8f1e7f87e90c8817a906c0a3842b2ef127bdf7fe0bd61f91d91f0dcb91895bc2c8a93c237ea75 + prettier: ">=2.0.0" + checksum: ea79e1dc33827b9f6fbf18e59bd766db4e6fdf60793189d1df68308eaa7d1362125e247e0df888acc10163193fb3f153b30ad006e420b70e82c8e480844ce1cf languageName: node linkType: hard @@ -4194,7 +4194,7 @@ fsevents@^2.3.2: version: 0.0.0-use.local resolution: "packwatch@workspace:." dependencies: - "@tophat/eslint-config": ^0.7.0 + "@tophat/eslint-config": 0.9.0 "@types/jest": 26.0.23 "@types/node": 14.17.2 "@typescript-eslint/eslint-plugin": ^4.26.0 -- 2.45.2 From 0a0022ead26b489ced730d70e93a33d03e11c5bc Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 5 Jun 2021 12:17:39 -0400 Subject: [PATCH 2/2] chore: lintfix --- tests/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index 81ec2fe..647b72f 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -15,7 +15,7 @@ async function prepareWorkspace(): Promise { async function cleanUpWorkspace(paths: string[]): Promise { await Promise.all( - paths.map(async path => fs.rmdir(path, { recursive: true })), + paths.map(async (path) => fs.rmdir(path, { recursive: true })), ) } -- 2.45.2