Skip to content

Commit

Permalink
fix: add organize imports plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
samalexander committed Oct 6, 2020
1 parent 03d07a6 commit 859aaa9
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 66 deletions.
150 changes: 86 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"jest": "^25.5.4",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"standard-version": "^8.0.2",
"three": "^0.118.3",
"ts-jest": "^25.5.1",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/csg.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BoxGeometry, Geometry, Matrix4, Mesh, Vector3 } from 'three';
import { CSG } from '../index';
import { Mesh, BoxGeometry, Vector3, Geometry, Matrix4 } from 'three';

describe('CSG instance methods', () => {
test('clone', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Vector3, Geometry, Matrix3, Face3, Mesh, Matrix4 } from 'three';
import { Face3, Geometry, Matrix3, Matrix4, Mesh, Vector3 } from 'three';

/**
* Holds a binary space partition tree representing a 3D solid. Two solids can
Expand Down

0 comments on commit 859aaa9

Please sign in to comment.