Fix lint errors

This commit is contained in:
Jonathan Tran
2025-04-04 15:54:21 -04:00
parent b228aaae45
commit 81ef9646a9
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import type { Name } from '@rust/kcl-lib/bindings/Name' import type { Name } from '@rust/kcl-lib/bindings/Name'
import type { Node } from '@rust/kcl-lib/bindings/Node' import type { Node } from '@rust/kcl-lib/bindings/Node'
import { NonCodeMeta } from '@rust/kcl-lib/bindings/NonCodeMeta' import { type NonCodeMeta } from '@rust/kcl-lib/bindings/NonCodeMeta'
import type { TagDeclarator } from '@rust/kcl-lib/bindings/TagDeclarator' import type { TagDeclarator } from '@rust/kcl-lib/bindings/TagDeclarator'
import { ARG_TAG } from '@src/lang/constants' import { ARG_TAG } from '@src/lang/constants'

View File

@ -1,6 +1,6 @@
import type { Node } from '@rust/kcl-lib/bindings/Node' import type { Node } from '@rust/kcl-lib/bindings/Node'
import { import type {
ARG_END_ABSOLUTE_X, ARG_END_ABSOLUTE_X,
ARG_END_ABSOLUTE_Y, ARG_END_ABSOLUTE_Y,
ARG_LENGTH, ARG_LENGTH,
@ -100,7 +100,6 @@ interface updateArgs extends ModifyAstBase {
export type InputArgKeys = export type InputArgKeys =
| 'angle' | 'angle'
| 'offset' | 'offset'
| 'length'
| 'to' | 'to'
| 'intersectTag' | 'intersectTag'
| 'radius' | 'radius'