From bc9e093e07e81c75bc94277b7dd3aff9936e3c28 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sun, 5 Mar 2017 13:08:53 -0700 Subject: [PATCH] Fix up some linting issues --- models/import.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/models/import.js b/models/import.js index 3385dd7de..41c2204b5 100644 --- a/models/import.js +++ b/models/import.js @@ -128,8 +128,8 @@ class TrelloCreator { name: String, checkItems: [Match.ObjectIncluding({ state: String, - name: String - })] + name: String, + })], })]); } @@ -387,7 +387,7 @@ class TrelloCreator { const checklistToCreate = { cardId: this.cards[checklist.idCard], title: checklist.name, - createdAt: this._now() + createdAt: this._now(), }; const checklistId = Checklists.direct.insert(checklistToCreate); // Now add the items to the checklist @@ -396,7 +396,7 @@ class TrelloCreator { itemsToCreate.push({ _id: checklistId + itemsToCreate.length, title: item.name, - isFinished: item.state == 'complete' + isFinished: item.state === 'complete', }); }); Checklists.direct.update(checklistId, {$set: {items: itemsToCreate}});