mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
build: add import/order eslint rule (#44108)
build: add import/order eslint rule (#44085) * build: add import/order eslint rule * chore: run lint:js --fix
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
import { BrowserWindow, app } from 'electron/main';
|
||||
import { shell } from 'electron/common';
|
||||
import { closeAllWindows } from './lib/window-helpers';
|
||||
import { ifdescribe, ifit, listen } from './lib/spec-helpers';
|
||||
import * as http from 'node:http';
|
||||
import { BrowserWindow, app } from 'electron/main';
|
||||
|
||||
import { expect } from 'chai';
|
||||
|
||||
import { once } from 'node:events';
|
||||
import * as fs from 'node:fs';
|
||||
import * as http from 'node:http';
|
||||
import * as os from 'node:os';
|
||||
import * as path from 'node:path';
|
||||
import { expect } from 'chai';
|
||||
import { once } from 'node:events';
|
||||
|
||||
import { ifdescribe, ifit, listen } from './lib/spec-helpers';
|
||||
import { closeAllWindows } from './lib/window-helpers';
|
||||
|
||||
describe('shell module', () => {
|
||||
describe('shell.openExternal()', () => {
|
||||
|
||||
Reference in New Issue
Block a user