From ebae1a20d59a50a53c99a14019c841a10839f95f Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 27 May 2020 22:21:18 +1000 Subject: Migrate from dprint-ignore to deno-fmt-ignore (#5659) --- std/hash/sha256.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/hash/sha256.ts') 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, -- cgit v1.2.3