Skip to content

Commit

Permalink
Fix using the node: protocol in type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Aug 30, 2021
1 parent 0d222bc commit 33ef465
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,10 @@ module.exports = {

'@typescript-eslint/no-unsafe-assignment': 'error',
'@typescript-eslint/no-unsafe-call': 'error',
'@typescript-eslint/no-unsafe-member-access': 'error',

// Disabled until TypeScrpt supports the `node:` protocol.
// '@typescript-eslint/no-unsafe-member-access': 'error',

'@typescript-eslint/no-unsafe-return': 'error',
'no-unused-expressions': 'off',
'@typescript-eslint/no-unused-expressions': 'error',
Expand Down

0 comments on commit 33ef465

Please sign in to comment.