lint: add max line length rules (denoland/deno_std#507)

Original: b04fda30c8
This commit is contained in:
Axetroy 2019-06-19 12:22:01 +08:00 committed by Ryan Dahl
parent d6e92582cc
commit c85b1c06a9
39 changed files with 262 additions and 129 deletions

View file

@ -21,7 +21,8 @@ async function main(): Promise<void> {
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);
}