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) + }) }) })