fix: Incorrect indentation (eslint)

This commit is contained in:
NGPixel
2017-06-24 16:31:32 -04:00
committed by Nicolas Giard
parent f37cbac332
commit a1b6dfb308
8 changed files with 72 additions and 80 deletions

View File

@@ -234,8 +234,8 @@ module.exports = {
generateThumbnail (sourcePath, destPath) {
return jimp.read(sourcePath).then(img => {
return img
.contain(150, 150)
.write(destPath)
.contain(150, 150)
.write(destPath)
})
},