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 --- examples/gist.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/gist.ts') diff --git a/examples/gist.ts b/examples/gist.ts index fb6837059..6b5611120 100755 --- a/examples/gist.ts +++ b/examples/gist.ts @@ -21,7 +21,8 @@ async function main(): Promise { if (parsedArgs._.length === 0) { console.error( - "Usage: gist.ts --allow-env --allow-net [-t|--title Example] some_file [next_file]" + "Usage: gist.ts --allow-env --allow-net [-t|--title Example] some_file " + + "[next_file]" ); exit(1); } -- cgit v1.2.3