Skip to content

Commit 115debc

Browse files
committed
Fix WebStorm auto-messing-up imports
>:(
1 parent 85c8579 commit 115debc

1 file changed

Lines changed: 9 additions & 19 deletions

File tree

src/processScript/transform.ts

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
/* eslint-disable jsdoc/check-param-names */
2-
import type { NodePath, Scope } from '@babel/traverse';
3-
import traverse from '@babel/traverse';
4-
import type {
5-
ArrayExpression,
6-
Block,
7-
BlockStatement,
8-
CallExpression,
9-
File,
10-
FunctionDeclaration,
11-
Identifier,
12-
Node,
13-
ObjectExpression
14-
} from '@babel/types';
15-
import t from '@babel/types';
16-
import type { LaxPartial } from '@samual/lib';
17-
import { assert } from '@samual/lib/assert';
18-
import { clearObject } from '@samual/lib/clearObject';
19-
import { validDBMethods } from '../constants';
20-
import { getReferencePathsToGlobal } from './shared';
2+
import type { NodePath, Scope } from "@babel/traverse"
3+
import type { ArrayExpression, Block, BlockStatement, CallExpression, File, FunctionDeclaration, Identifier, Node, ObjectExpression } from "@babel/types"
4+
import type { LaxPartial } from "@samual/lib"
5+
import traverse from "@babel/traverse"
6+
import t from "@babel/types"
7+
import { assert } from "@samual/lib/assert"
8+
import { clearObject } from "@samual/lib/clearObject"
9+
import { validDBMethods } from "../constants"
10+
import { getReferencePathsToGlobal } from "./shared"
2111

2212
export type TransformOptions = LaxPartial<{
2313
/** 11 a-z 0-9 characters */ uniqueId: string

0 commit comments

Comments
 (0)