Skip to content

Commit

Permalink
Update dependency eslint-config-problems to v7 (#504)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
renovate[bot] and RyanZim committed Oct 11, 2022
1 parent 11922cd commit 9f6376b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down
4 changes: 3 additions & 1 deletion test/import.js
Expand Up @@ -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)
})
})
})

Expand Down

0 comments on commit 9f6376b

Please sign in to comment.