mirror of
https://github.com/zoriya/flood.git
synced 2025-12-06 07:16:18 +00:00
style: add new rule for imports (#785)
This commit is contained in:
@@ -9,7 +9,7 @@ process.on('unhandledRejection', (err) => {
|
||||
throw err;
|
||||
});
|
||||
|
||||
const path = require('path');
|
||||
const path = require('node:path');
|
||||
const esbuild = require('esbuild');
|
||||
const chalk = require('chalk');
|
||||
const fs = require('fs-extra');
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
const chalk = require('chalk');
|
||||
const crypto = require('crypto');
|
||||
const fs = require('fs');
|
||||
const os = require('os');
|
||||
const path = require('path');
|
||||
const {spawn} = require('child_process');
|
||||
const crypto = require('node:crypto');
|
||||
const fs = require('node:fs');
|
||||
const os = require('node:os');
|
||||
const path = require('node:path');
|
||||
const {spawn} = require('node:child_process');
|
||||
|
||||
const temporaryRuntimeDirectory = path.resolve(os.tmpdir(), `flood.test.${crypto.randomBytes(12).toString('hex')}`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user