From 9f6376bf1abdba21e4c6c9d87945f62bff4db35d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 11:05:27 -0400 Subject: [PATCH] Update dependency eslint-config-problems to v7 (#504) * Update dependency eslint-config-problems to v7 * Fix linter error Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ryan Zimmerman --- package.json | 2 +- test/import.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 290f994b..a94514a3 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "devDependencies": { "ava": "^4.0.0", "eslint": "^8.2.0", - "eslint-config-problems": "^6.0.0", + "eslint-config-problems": "^7.0.0", "eslint-plugin-prettier": "^4.0.0", "postcss": "^8.0.0", "postcss-scss": "^4.0.0", diff --git a/test/import.js b/test/import.js index 4bcafdcd..c13bd769 100644 --- a/test/import.js +++ b/test/import.js @@ -115,7 +115,9 @@ test("inlined @import should keep PostCSS AST references clean", t => { from: undefined, }) .then(result => { - result.root.nodes.forEach(node => t.is(result.root, node.parent)) + result.root.nodes.forEach(node => { + t.is(result.root, node.parent) + }) }) })