mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
eslint: Enable @typescript-eslint/consistent-type-imports.
TypeScript type-only imports will probably become important eventually for reducing our circular import problem. https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Anders Kaseorg
parent
6364e1b5f3
commit
0d218a4b76
@@ -1,6 +1,6 @@
|
||||
import ErrorStackParser from "error-stack-parser";
|
||||
import $ from "jquery";
|
||||
import StackFrame from "stackframe";
|
||||
import type StackFrame from "stackframe";
|
||||
import StackTraceGPS from "stacktrace-gps";
|
||||
|
||||
import render_blueslip_stacktrace from "../templates/blueslip_stacktrace.hbs";
|
||||
|
||||
4
static/js/types/stacktrace-gps/index.d.ts
vendored
4
static/js/types/stacktrace-gps/index.d.ts
vendored
@@ -1,5 +1,5 @@
|
||||
import SourceMap from "source-map";
|
||||
import StackFrame from "stackframe";
|
||||
import type SourceMap from "source-map";
|
||||
import type StackFrame from "stackframe";
|
||||
|
||||
declare namespace StackTraceGPS {
|
||||
type StackTraceGPSOptions = {
|
||||
|
||||
Reference in New Issue
Block a user