build: add import/order eslint rule (#44106)
build: add import/order eslint rule (#44085) * build: add import/order eslint rule * chore: run lint:js --fix
This commit is contained in:
parent
479caedc8a
commit
e9cb85bea6
209 changed files with 831 additions and 444 deletions
|
@ -1,14 +1,16 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
const crypto = require('node:crypto');
|
||||
const { GitProcess } = require('dugite');
|
||||
const childProcess = require('node:child_process');
|
||||
const { ESLint } = require('eslint');
|
||||
const fs = require('node:fs');
|
||||
const minimist = require('minimist');
|
||||
const path = require('node:path');
|
||||
const { getCodeBlocks } = require('@electron/lint-roller/dist/lib/markdown');
|
||||
|
||||
const { GitProcess } = require('dugite');
|
||||
const { ESLint } = require('eslint');
|
||||
const minimist = require('minimist');
|
||||
|
||||
const childProcess = require('node:child_process');
|
||||
const crypto = require('node:crypto');
|
||||
const fs = require('node:fs');
|
||||
const path = require('node:path');
|
||||
|
||||
const { chunkFilenames, findMatchingFiles } = require('./lib/utils');
|
||||
|
||||
const ELECTRON_ROOT = path.normalize(path.dirname(__dirname));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue