Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstantineYurevich committed Jun 15, 2017
1 parent db0f325 commit 26a9c52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/DDHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { getProp, setProp } from './functions/dotProp';
import clone from './functions/clone';

function matchProductById(id, product) {
return product.id && String(product.id) === String(id)
return product.id && String(product.id) === String(id);
}

function matchProductBySkuCode(skuCode, product) {
return product.skuCode && String(product.skuCode) === String(skuCode)
return product.skuCode && String(product.skuCode) === String(skuCode);
}

function matchProduct(id, skuCode, product) {
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/Flocktory.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class Flocktory extends Integration {
});
}),
},
spot: getProp('integrations.flocktory.spot')
spot: getProp('integrations.flocktory.spot'),
})]);
}
}
Expand Down

0 comments on commit 26a9c52

Please sign in to comment.