Revert "sort imports" (#6100)

Revert "sort imports (#6094)"

This reverts commit 2fc8cb5376.
This commit is contained in:
Jess Frazelle
2025-04-01 15:31:19 -07:00
committed by GitHub
parent 964d81dc0e
commit 879b471aed
342 changed files with 2630 additions and 2939 deletions

View File

@ -1,31 +1,30 @@
import { Models } from '@kittycad/lib'
import { angleLengthInfo } from 'components/Toolbar/setAngleLength'
import { DEV } from 'env'
import { getNodeFromPath } from 'lang/queryAst'
import { getVariableDeclaration } from 'lang/queryAst/getVariableDeclaration'
import { getNodePathFromSourceRange } from 'lang/queryAstNodePathUtils'
import { transformAstSketchLines } from 'lang/std/sketchcombos'
import {
isPathToNode,
PathToNode,
SourceRange,
VariableDeclarator,
isPathToNode,
} from 'lang/wasm'
import { KclCommandValue, StateMachineCommandSetConfig } from 'lib/commandTypes'
import { KCL_DEFAULT_DEGREE, KCL_DEFAULT_LENGTH } from 'lib/constants'
import { StateMachineCommandSetConfig, KclCommandValue } from 'lib/commandTypes'
import { KCL_DEFAULT_LENGTH, KCL_DEFAULT_DEGREE } from 'lib/constants'
import { components } from 'lib/machine-api'
import { Selections } from 'lib/selections'
import { codeManager, kclManager } from 'lib/singletons'
import { err } from 'lib/trap'
import { SketchTool, modelingMachine } from 'machines/modelingMachine'
import { IS_NIGHTLY_OR_DEBUG } from 'routes/Settings'
import { modelingMachine, SketchTool } from 'machines/modelingMachine'
import {
loftValidator,
revolveAxisValidator,
shellValidator,
sweepValidator,
} from './validators'
import { getVariableDeclaration } from 'lang/queryAst/getVariableDeclaration'
import { getNodePathFromSourceRange } from 'lang/queryAstNodePathUtils'
import { getNodeFromPath } from 'lang/queryAst'
import { IS_NIGHTLY_OR_DEBUG } from 'routes/Settings'
import { DEV } from 'env'
type OutputFormat = Models['OutputFormat3d_type']
type OutputTypeKey = OutputFormat['type']