From c85b1c06a9804ad41fbccf8fe5a5689f28eb049e Mon Sep 17 00:00:00 2001 From: Axetroy Date: Wed, 19 Jun 2019 12:22:01 +0800 Subject: lint: add max line length rules (denoland/deno_std#507) Original: https://github.com/denoland/deno_std/commit/b04fda30c8949b6347094b898bfa427c0b9a6162 --- multipart/formfile.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'multipart') diff --git a/multipart/formfile.ts b/multipart/formfile.ts index 8bbdcffbc..592f4e529 100644 --- a/multipart/formfile.ts +++ b/multipart/formfile.ts @@ -10,7 +10,9 @@ export interface FormFile { size: number; /** in-memory content of file. Either content or tempfile is set */ content?: Uint8Array; - /** temporal file path. Set if file size is bigger than specified max-memory size at reading form */ + /** temporal file path. + * Set if file size is bigger than specified max-memory size at reading form + * */ tempfile?: string; } -- cgit v1.2.3