diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-09-27 06:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:22:32 +0200 |
commit | df02e315075456f8d5f75472abbb1fa81e237827 (patch) | |
tree | d0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/hash | |
parent | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff) |
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/hash')
-rw-r--r-- | std/hash/sha1_test.ts | 4 | ||||
-rw-r--r-- | std/hash/sha256_test.ts | 4 | ||||
-rw-r--r-- | std/hash/sha512_test.ts | 4 |
3 files changed, 6 insertions, 6 deletions
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"); |