Skip to content

Commit

Permalink
build(deps-dev): bump eslint-plugin-unicorn from 44.0.2 to 45.0.2 (#333)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bryan Mishkin <[email protected]>
  • Loading branch information
dependabot[bot] and bmish authored Jan 20, 2023
1 parent b4da20a commit 517a6d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/rules/require-meta-docs-url.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,10 @@ module.exports = {
metaNode ||
ruleInfo.create,

// eslint-disable-next-line unicorn/no-negated-condition -- actually more clear like this
messageId: !urlPropNode
? 'missing'
: // eslint-disable-next-line unicorn/no-nested-ternary -- this is fine for now
: // eslint-disable-next-line unicorn/no-nested-ternary,unicorn/no-negated-condition -- this is fine for now
!expectedUrl
? 'wrongType'
: /* otherwise */ 'mismatch',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-remote-tester": "^3.0.0",
"eslint-scope": "^7.1.1",
"espree": "^9.4.0",
Expand Down

0 comments on commit 517a6d9

Please sign in to comment.