diff options
| author | bors <bors@rust-lang.org> | 2023-07-11 12:01:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-07-11 12:01:57 +0000 |
| commit | 75ac37f317269798da87d42738d79cade3a28ab9 (patch) | |
| tree | 1b837f36322b74c7a413e80a052ca015fc0fea0a /editors/code/src/debug.ts | |
| parent | a5f0c6b8de53fd0f392f12bf64c0278abf26f3a0 (diff) | |
| parent | 445b4fc27f81212ccfab85890f3196517e85ecb3 (diff) | |
| download | rust-75ac37f317269798da87d42738d79cade3a28ab9.tar.gz rust-75ac37f317269798da87d42738d79cade3a28ab9.zip | |
Auto merge of #15259 - tetsuharuohzeki:sort-the-style-to-import, r=Veykril
editor/code: Sort the style to import types This pull requests enables new lint rule to sorts the style to import types/symbols. ## see details of enabled rules - https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/consistent-type-imports.md - https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/no-import-type-side-effects.md
Diffstat (limited to 'editors/code/src/debug.ts')
| -rw-r--r-- | editors/code/src/debug.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index 29758feafe4..484f547230f 100644 --- a/editors/code/src/debug.ts +++ b/editors/code/src/debug.ts @@ -1,10 +1,10 @@ import * as os from "os"; import * as vscode from "vscode"; import * as path from "path"; -import * as ra from "./lsp_ext"; +import type * as ra from "./lsp_ext"; import { Cargo, getRustcId, getSysroot } from "./toolchain"; -import { Ctx } from "./ctx"; +import type { Ctx } from "./ctx"; import { prepareEnv } from "./run"; import { unwrapUndefinable } from "./undefinable"; |
