Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Nov 15, 2024
1 parent 85f61a5 commit 7efa923
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/expression/definitions/interpolate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type ParsingContext from '../parsing_context';
import type EvaluationContext from '../evaluation_context';
import type {Type} from '../types';
import Color from '../types/color';
import { interpolateArray, interpolateNumber } from '../../util/interpolate-primitives';
import {interpolateArray, interpolateNumber} from '../../util/interpolate-primitives';
import Padding from '../types/padding';
import VariableAnchorOffsetCollection from '../types/variable_anchor_offset_collection';

Expand Down
1 change: 0 additions & 1 deletion src/expression/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import type {PaddingSpecification, PropertyValueSpecification, VariableAnchorOff
import type {FormattedSection} from './types/formatted';
import type {Point2D} from '../point2d';


import {ICanonicalTileID} from '../tiles_and_coordinates';
import {isFunction, createFunction} from '../function';
import Color from './types/color';
Expand Down
2 changes: 1 addition & 1 deletion src/expression/types/padding.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {interpolateArray} from "../../util/interpolate-primitives";
import {interpolateArray} from '../../util/interpolate-primitives';

/**
* A set of four numbers representing padding around a box. Create instances from
Expand Down
2 changes: 1 addition & 1 deletion src/function/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Color, {isSupportedInterpolationColorSpace} from '../expression/types/color';
import extend from '../util/extend';
import getType from '../util/get_type';
import Interpolate, { interpolateFactory } from '../expression/definitions/interpolate';
import Interpolate, {interpolateFactory} from '../expression/definitions/interpolate';
import Formatted from '../expression/types/formatted';
import ResolvedImage from '../expression/types/resolved_image';
import {supportsInterpolation} from '../util/properties';
Expand Down

0 comments on commit 7efa923

Please sign in to comment.