style: apply prefer-node-protocol lint rule (#5627)

it makes it perfectly clear that the package is a Node.js builtin module.
This commit is contained in:
LongYinan
2024-01-19 03:47:08 +00:00
parent 9d28eb530a
commit fa8655e43e
19 changed files with 37 additions and 23 deletions

View File

@@ -1,10 +1,11 @@
import fs from 'node:fs';
import path from 'node:path';
import {
AppConfigStorage,
defaultAppConfig,
} from '@toeverything/infra/app-config-storage';
import { app } from 'electron';
import fs from 'fs';
import path from 'path';
const FILENAME = 'config.json';
const FILEPATH = path.join(app.getPath('userData'), FILENAME);

View File

@@ -1,8 +1,8 @@
import assert from 'node:assert';
import { join } from 'node:path';
import { BrowserWindow, type CookiesSetDetails, nativeTheme } from 'electron';
import electronWindowState from 'electron-window-state';
import { join } from 'path';
import { isMacOS, isWindows } from '../shared/utils';
import { mainWindowOrigin } from './constants';

View File

@@ -1,5 +1,6 @@
import { join } from 'node:path';
import { BrowserWindow, type Display, screen } from 'electron';
import { join } from 'path';
import { isMacOS } from '../shared/utils';
import { mainWindowOrigin } from './constants';

View File

@@ -1,5 +1,6 @@
import { join } from 'node:path';
import { net, protocol, session } from 'electron';
import { join } from 'path';
import { CLOUD_BASE_URL } from './config';
import { logger } from './logger';

View File

@@ -1,5 +1,6 @@
import { parse } from 'node:url';
import { app, BrowserWindow, shell } from 'electron';
import { parse } from 'url';
import { logger } from '../logger';