Skip to content

Commit

Permalink
chore: Enable biome organizeImports (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt authored May 24, 2024
1 parent bf2aeb5 commit dda7d29
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"organizeImports": {
"enabled": false
"enabled": true
},
"linter": {
"enabled": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/deno/src/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* ```
*/

import * as path from "@std/path";
import * as fs from "@std/fs";
import * as cli from "@std/cli";
import * as fs from "@std/fs";
import * as path from "@std/path";
import * as unzipit from "unzipit";
import * as z from "zod";
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getContext, onDestroy } from "svelte";
import { writable } from "svelte/store";

import { MODEL_SYMBOL, STORES_SYMBOL } from "./constants.js";
import WrapperComponent from "./WrapperComponent.svelte";
import { MODEL_SYMBOL, STORES_SYMBOL } from "./constants.js";

/**
* @template Model
Expand Down

0 comments on commit dda7d29

Please sign in to comment.