Skip to content

Commit 9f6376b

Browse files
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 <opensrc@ryanzim.com>
1 parent 11922cd commit 9f6376b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"devDependencies": {
2929
"ava": "^4.0.0",
3030
"eslint": "^8.2.0",
31-
"eslint-config-problems": "^6.0.0",
31+
"eslint-config-problems": "^7.0.0",
3232
"eslint-plugin-prettier": "^4.0.0",
3333
"postcss": "^8.0.0",
3434
"postcss-scss": "^4.0.0",

test/import.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ test("inlined @import should keep PostCSS AST references clean", t => {
115115
from: undefined,
116116
})
117117
.then(result => {
118-
result.root.nodes.forEach(node => t.is(result.root, node.parent))
118+
result.root.nodes.forEach(node => {
119+
t.is(result.root, node.parent)
120+
})
119121
})
120122
})
121123

0 commit comments

Comments
 (0)