From df02e315075456f8d5f75472abbb1fa81e237827 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sun, 27 Sep 2020 06:22:32 -0400 Subject: feat(fmt): Sort named import and export specifiers (#7711) --- std/hash/sha1_test.ts | 4 ++-- std/hash/sha256_test.ts | 4 ++-- std/hash/sha512_test.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'std/hash') diff --git a/std/hash/sha1_test.ts b/std/hash/sha1_test.ts index 89c60fe52..2caaff49b 100644 --- a/std/hash/sha1_test.ts +++ b/std/hash/sha1_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "../testing/asserts.ts"; -import { Sha1, Message } from "./sha1.ts"; -import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts"; +import { Message, Sha1 } from "./sha1.ts"; +import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts"; const moduleDir = dirname(fromFileUrl(import.meta.url)); const testdataDir = resolve(moduleDir, "testdata"); diff --git a/std/hash/sha256_test.ts b/std/hash/sha256_test.ts index fd9c227f4..1d03ea987 100644 --- a/std/hash/sha256_test.ts +++ b/std/hash/sha256_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { Sha256, HmacSha256, Message } from "./sha256.ts"; +import { HmacSha256, Message, Sha256 } from "./sha256.ts"; import { assertEquals } from "../testing/asserts.ts"; -import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts"; +import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts"; const moduleDir = dirname(fromFileUrl(import.meta.url)); const testdataDir = resolve(moduleDir, "testdata"); diff --git a/std/hash/sha512_test.ts b/std/hash/sha512_test.ts index ee49a229d..b9f72b150 100644 --- a/std/hash/sha512_test.ts +++ b/std/hash/sha512_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { Sha512, HmacSha512, Message } from "./sha512.ts"; +import { HmacSha512, Message, Sha512 } from "./sha512.ts"; import { assertEquals } from "../testing/asserts.ts"; -import { dirname, join, resolve, fromFileUrl } from "../path/mod.ts"; +import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts"; const moduleDir = dirname(fromFileUrl(import.meta.url)); const testdataDir = resolve(moduleDir, "testdata"); -- cgit v1.2.3