diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-05-27 22:21:18 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 14:21:18 +0200 |
commit | ebae1a20d59a50a53c99a14019c841a10839f95f (patch) | |
tree | 59c56a77185e2cf4e2abf73244e841c64f85fa66 /std/hash/sha256.ts | |
parent | 23bbb3945496ad5b8378ccd427f6d017d1cc7c58 (diff) |
Migrate from dprint-ignore to deno-fmt-ignore (#5659)
Diffstat (limited to 'std/hash/sha256.ts')
-rw-r--r-- | std/hash/sha256.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/hash/sha256.ts b/std/hash/sha256.ts index c5635cacd..61da5a578 100644 --- a/std/hash/sha256.ts +++ b/std/hash/sha256.ts @@ -15,7 +15,7 @@ const HEX_CHARS = "0123456789abcdef".split(""); const EXTRA = [-2147483648, 8388608, 32768, 128] as const; const SHIFT = [24, 16, 8, 0] as const; // prettier-ignore -// dprint-ignore +// deno-fmt-ignore const K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, |