Reformat imports to be one identifier per line (#51565)

This commit is contained in:
Jake Bailey
2022-11-17 13:42:18 -08:00
committed by GitHub
parent 8eed2ca2dd
commit 2d2a4343b8
378 changed files with 16788 additions and 2935 deletions

View File

@@ -1,4 +1,4 @@
import { join, resolve, dirname } from "path";
import { dirname, join, resolve } from "path";
import { existsSync } from "fs";
import url from "url";

View File

@@ -1,4 +1,4 @@
import { exec, Debouncer } from "./utils.mjs";
import { Debouncer, exec } from "./utils.mjs";
import { resolve } from "path";
import { findUpRoot } from "./findUpDir.mjs";
import cmdLineOptions from "./options.mjs";