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

Tools: Implement "prefer-object-spread" eslint rule

This commit is contained in:
Laurent Cozic
2023-06-01 12:02:36 +01:00
parent 804d674d37
commit c89edd7b22
126 changed files with 588 additions and 909 deletions

View File

@@ -95,10 +95,8 @@ utils.replaceFileText = async function(filePath, regex, toInsert) {
};
utils.copyDir = async function(src, dest, options) {
options = Object.assign({}, {
excluded: [],
delete: true,
}, options);
options = { excluded: [],
delete: true, ...options };
src = utils.toSystemSlashes(src);
dest = utils.toSystemSlashes(dest);