This is an automated email from the ASF dual-hosted git repository. 100pah pushed a commit to branch release-dev in repository https://gitbox.apache.org/repos/asf/echarts.git
commit c32ab647af50eae338248a68f48ba8b7200a3494 Author: 100pah <[email protected]> AuthorDate: Wed May 6 17:04:15 2026 +0800 lint: Remove unused variables. --- src/chart/helper/whiskerBoxCommon.ts | 2 +- src/component/axis/AngleAxisView.ts | 1 - src/component/axis/AxisBuilder.ts | 1 - src/component/legend/LegendView.ts | 1 - src/component/marker/MarkerModel.ts | 1 + 5 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/chart/helper/whiskerBoxCommon.ts b/src/chart/helper/whiskerBoxCommon.ts index 8839b59e0..faa15d6b7 100644 --- a/src/chart/helper/whiskerBoxCommon.ts +++ b/src/chart/helper/whiskerBoxCommon.ts @@ -21,7 +21,7 @@ import createSeriesDataSimply from './createSeriesDataSimply'; import * as zrUtil from 'zrender/src/core/util'; import {getDimensionTypeByAxis} from '../../data/helper/dimensionHelper'; import {makeSeriesEncodeForAxisCoordSys} from '../../data/helper/sourceHelper'; -import type { SeriesOption, SeriesOnCartesianOptionMixin, LayoutOrient, NullUndefined } from '../../util/types'; +import type { SeriesOption, SeriesOnCartesianOptionMixin, LayoutOrient } from '../../util/types'; import type GlobalModel from '../../model/Global'; import type SeriesModel from '../../model/Series'; import type CartesianAxisModel from '../../coord/cartesian/AxisModel'; diff --git a/src/component/axis/AngleAxisView.ts b/src/component/axis/AngleAxisView.ts index 6d255d76f..a8eaae05d 100644 --- a/src/component/axis/AngleAxisView.ts +++ b/src/component/axis/AngleAxisView.ts @@ -29,7 +29,6 @@ import Polar from '../../coord/polar/Polar'; import AngleAxis from '../../coord/polar/AngleAxis'; import { ZRTextAlign, ZRTextVerticalAlign, ColorString } from '../../util/types'; import { getECData } from '../../util/innerStore'; -import OrdinalScale from '../../scale/Ordinal'; import { AxisLabelBaseOptionNuance } from '../../coord/axisCommonTypes'; import { getTickValueOutermost } from '../../coord/axisHelper'; diff --git a/src/component/axis/AxisBuilder.ts b/src/component/axis/AxisBuilder.ts index 14adfc4dc..9e5151711 100644 --- a/src/component/axis/AxisBuilder.ts +++ b/src/component/axis/AxisBuilder.ts @@ -50,7 +50,6 @@ import { } from '../../coord/axisCommonTypes'; import type Element from 'zrender/src/Element'; import { PathProps, PathStyleProps } from 'zrender/src/graphic/Path'; -import OrdinalScale from '../../scale/Ordinal'; import { hideOverlap, LabelLayoutWithGeometry, diff --git a/src/component/legend/LegendView.ts b/src/component/legend/LegendView.ts index 142bb32d6..9a7976508 100644 --- a/src/component/legend/LegendView.ts +++ b/src/component/legend/LegendView.ts @@ -18,7 +18,6 @@ */ import * as zrUtil from 'zrender/src/core/util'; -import { DisplayableState } from 'zrender/src/graphic/Displayable'; import { PathStyleProps } from 'zrender/src/graphic/Path'; import { parse, stringify } from 'zrender/src/tool/color'; import * as graphic from '../../util/graphic'; diff --git a/src/component/marker/MarkerModel.ts b/src/component/marker/MarkerModel.ts index 17bb6a0c4..78060291c 100644 --- a/src/component/marker/MarkerModel.ts +++ b/src/component/marker/MarkerModel.ts @@ -262,6 +262,7 @@ abstract class MarkerModel<Opts extends MarkerOption = MarkerOption> extends Com } } +// eslint-disable-next-line @typescript-eslint/no-unused-vars interface MarkerModel<Opts extends MarkerOption = MarkerOption> extends DataFormatMixin {} zrUtil.mixin(MarkerModel, DataFormatMixin.prototype); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
