You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +02:00
Tools: Enable eslint rule comma-dangle: always-multiline for functions
This commit is contained in:
@@ -537,7 +537,7 @@ export default class Synchronizer {
|
||||
(fnName, ...args) => {
|
||||
return this.apiCall(fnName, ...args);
|
||||
},
|
||||
action => { return this.dispatch(action); }
|
||||
action => { return this.dispatch(action); },
|
||||
);
|
||||
} // DELETE_REMOTE STEP
|
||||
|
||||
@@ -768,7 +768,7 @@ export default class Synchronizer {
|
||||
local,
|
||||
syncTargetId,
|
||||
itemIsReadOnly,
|
||||
(action: any) => this.dispatch(action)
|
||||
(action: any) => this.dispatch(action),
|
||||
);
|
||||
|
||||
completeItemProcessing(path);
|
||||
|
||||
Reference in New Issue
Block a user