Skip to content

Commit

Permalink
Removed url.parse deprecation exemption
Browse files Browse the repository at this point in the history
as it is actually dangerous (https://hackerone.com/reports/678487), and its status is not likely to be resolved (nodejs/node#42232, nodejs/node#12682)
  • Loading branch information
k15r committed Mar 10, 2024
1 parent 0b85702 commit 485cd95
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,7 @@
"n/shebang": "off",
"n/no-missing-import": "off",
"n/no-unpublished-import": "off",
"n/no-deprecated-api": [
"error",
{
"ignoreModuleItems": ["url.parse"]
}
],
"n/no-deprecated-api": ["error"],
"n/prefer-global/buffer": "error",
"n/prefer-global/console": "error",
"n/prefer-global/process": "error",
Expand Down

0 comments on commit 485cd95

Please sign in to comment.