1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Tools: Enable eslint rule "comma-spacing"

This commit is contained in:
Laurent Cozic
2023-01-11 18:37:22 +00:00
parent bba3af17b7
commit 4888b4bd14
33 changed files with 79 additions and 78 deletions

View File

@@ -111,7 +111,7 @@ class SyncTargetAmazonS3 extends BaseSyncTarget {
new HeadBucketCommand({
Bucket: options.path(),
}),(err, response) => {
}), (err, response) => {
if (err) reject(err);
else resolve(response);
});