forked from mysticatea/eslint-plugin-node
-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update no-unsupported to node v22.9.0 (#342)
* feat: Node v20.17.0 #333 * feat: Node v22.6.0 #330 * feat: Node v22.7.0 #334 * feat: Add perf_hooks.performance to unsupported * feat: Node v22.8.0 #335 * feat: Node v22.9.0 #340
- Loading branch information
Showing
10 changed files
with
186 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
"use strict" | ||
|
||
const { CALL, READ } = require("@eslint-community/eslint-utils") | ||
|
||
/** @type {import('../types.js').SupportVersionTraceMap} */ | ||
const repl = { | ||
start: { | ||
[READ]: { supported: ["0.1.91"] }, | ||
}, | ||
writer: { | ||
[READ]: { supported: ["0.1.91"] }, | ||
}, | ||
REPLServer: { | ||
[READ]: { supported: ["0.1.91"] }, | ||
[CALL]: { deprecated: ["22.9.0"] }, | ||
}, | ||
REPL_MODE_MAGIC: { | ||
[READ]: { | ||
supported: ["4.0.0"], | ||
deprecated: ["8.0.0"], | ||
// removed: ['10.0.0'], | ||
}, | ||
}, | ||
REPL_MODE_SLOPPY: { | ||
[READ]: { supported: ["4.0.0"] }, | ||
}, | ||
REPL_MODE_STRICT: { | ||
[READ]: { supported: ["4.0.0"] }, | ||
}, | ||
Recoverable: { | ||
[READ]: { supported: ["6.2.0"] }, | ||
[CALL]: { deprecated: ["22.9.0"] }, | ||
}, | ||
builtinModules: { | ||
[READ]: { supported: ["14.5.0"] }, | ||
}, | ||
} | ||
|
||
/** @type {import('../types.js').SupportVersionTraceMap} */ | ||
module.exports = { | ||
repl: { | ||
[READ]: { supported: ["0.1.91"] }, | ||
...repl, | ||
}, | ||
"node:repl": { | ||
[READ]: { supported: ["14.13.1", "12.20.0"] }, | ||
...repl, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters