mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-05 15:17:48 +02:00
CODEBASE: Expand lint rules, and Aliases are stored as maps (#501)
This commit is contained in:
@@ -29,7 +29,7 @@ export function commonEditor(
|
||||
scriptEditorRouteOptions?: ScriptEditorRouteOptions,
|
||||
): void {
|
||||
if (args.length < 1) return Terminal.error(`Incorrect usage of ${command} command. Usage: ${command} [scriptname]`);
|
||||
const filesToOpen: Map<ScriptFilePath | TextFilePath, string> = new Map();
|
||||
const filesToOpen = new Map<ScriptFilePath | TextFilePath, string>();
|
||||
for (const arg of args) {
|
||||
const pattern = String(arg);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user