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 --- encoding/toml_test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'encoding/toml_test.ts') diff --git a/encoding/toml_test.ts b/encoding/toml_test.ts index 13d4f0b14..28a620453 100644 --- a/encoding/toml_test.ts +++ b/encoding/toml_test.ts @@ -29,7 +29,8 @@ test({ str5: "The quick brown\nfox jumps over\nthe lazy dog.", str6: "The quick brown\nfox jumps over\nthe lazy dog.", lines: - "The first newline is\ntrimmed in raw strings.\n All other whitespace\n is preserved." + "The first newline is\ntrimmed in raw strings.\n All other " + + "whitespace\n is preserved." } }; const actual = parseFile(path.join(testFilesDir, "string.toml")); -- cgit v1.2.3