diff --git a/.prettierrc b/.prettierrc index 8f1508a..01534ca 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,7 +1,8 @@ { - useTabs: true, - tabWidth: 4, - trailingComma: "es5", + "useTabs": true, + "tabWidth": 4, + "trailingComma": "es5", + "printWidth": 100, "overrides": [ { "files": "*.yml", @@ -9,6 +10,13 @@ "tabWidth": 2, "useTabs": false } + }, + { + "files": "*.html", + "options": { + "printWidth": 120, + "htmlWhitespaceSensitivity": "ignore" + } } ] } \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 1684384..8ec5bbe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -107,10 +107,7 @@ ${this.formatPerson()} } class Range { - constructor( - public date_start: Date, - public date_end: Date - ) {} + constructor(public date_start: Date, public date_end: Date) {} } abstract class CSVParser {