diff --git a/default_app/.eslintrc.json b/default_app/.eslintrc.json new file mode 100644 index 0000000000..dc7dde78dc --- /dev/null +++ b/default_app/.eslintrc.json @@ -0,0 +1,8 @@ +{ + "plugins": [ + "unicorn" + ], + "rules": { + "unicorn/prefer-node-protocol": "error" + } +} diff --git a/default_app/default_app.ts b/default_app/default_app.ts index 0bac020331..538d7f8752 100644 --- a/default_app/default_app.ts +++ b/default_app/default_app.ts @@ -1,7 +1,7 @@ import { shell } from 'electron/common'; import { app, dialog, BrowserWindow, ipcMain } from 'electron/main'; -import * as path from 'path'; -import * as url from 'url'; +import * as path from 'node:path'; +import * as url from 'node:url'; let mainWindow: BrowserWindow | null = null; diff --git a/default_app/main.ts b/default_app/main.ts index 7defe97f3e..be5a3c2034 100644 --- a/default_app/main.ts +++ b/default_app/main.ts @@ -1,8 +1,8 @@ import * as electron from 'electron/main'; -import * as fs from 'fs'; -import * as path from 'path'; -import * as url from 'url'; +import * as fs from 'node:fs'; +import * as path from 'node:path'; +import * as url from 'node:url'; const { app, dialog } = electron; type DefaultAppOptions = { @@ -15,7 +15,7 @@ type DefaultAppOptions = { modules: string[]; } -const Module = require('module'); +const Module = require('node:module'); // Parse command line options. const argv = process.argv.slice(1); @@ -112,7 +112,7 @@ function loadApplicationPackage (packagePath: string) { // Set v8 flags, deliberately lazy load so that apps that do not use this // feature do not pay the price if (packageJson.v8Flags) { - require('v8').setFlagsFromString(packageJson.v8Flags); + require('node:v8').setFlagsFromString(packageJson.v8Flags); } appPath = packagePath; } @@ -171,7 +171,7 @@ function startRepl () { Using: Node.js ${nodeVersion} and Electron.js ${electronVersion} `); - const { REPLServer } = require('repl'); + const { REPLServer } = require('node:repl'); const repl = new REPLServer({ prompt: '> ' }).on('exit', () => {