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/csv.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'encoding/csv.ts') diff --git a/encoding/csv.ts b/encoding/csv.ts index 1c4ae546b..ccbf4df77 100644 --- a/encoding/csv.ts +++ b/encoding/csv.ts @@ -21,11 +21,12 @@ export class ParseError extends Error { /** * @property comma - Character which separates values. Default: ',' * @property comment - Character to start a comment. Default: '#' - * @property trimLeadingSpace - Flag to trim the leading space of the value. Default: 'false' + * @property trimLeadingSpace - Flag to trim the leading space of the value. + * Default: 'false' * @property lazyQuotes - Allow unquoted quote in a quoted field or non double - * quoted quotes in quoted field Default: 'false' - * @property fieldsPerRecord - Enabling the check of fields for each row. If == 0 - * first row is used as referal for the number of fields. + * quoted quotes in quoted field Default: 'false' + * @property fieldsPerRecord - Enabling the check of fields for each row. + * If == 0, first row is used as referal for the number of fields. */ export interface ParseOptions { comma?: string; -- cgit v1.2.3