diff --git a/dist/jcink/move-recent-topics/index.js b/dist/jcink/move-recent-topics/index.js index 5637aab..8e42f4b 100644 --- a/dist/jcink/move-recent-topics/index.js +++ b/dist/jcink/move-recent-topics/index.js @@ -36,7 +36,7 @@ SOFTWARE. if (!parent) { console.error( - `New parent for recent topics could not be found, expected element with ID ${parentId}` + `New parent for recent topics could not be found, expected element with ID ${parentId}`, ); } diff --git a/dist/wrap-word/_test.html b/dist/wrap-word/_test.html index d05e620..dead6f1 100644 --- a/dist/wrap-word/_test.html +++ b/dist/wrap-word/_test.html @@ -1,4 +1,4 @@ - + diff --git a/dist/wrap-word/index.js b/dist/wrap-word/index.js index e56e674..5bfc816 100644 --- a/dist/wrap-word/index.js +++ b/dist/wrap-word/index.js @@ -54,27 +54,27 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI const textNode = getContainingTextNode( target, word, - mode.isForwardSearching + mode.isForwardSearching, ); injectWrapper( textNode, word, wordWrapped, - mode.isForwardSearching + mode.isForwardSearching, ); } catch (exception) { switch (exception.level) { case "warn": console.warn( exception.message, - ...exception.substitutions + ...exception.substitutions, ); break; default: console.error( exception.message, - ...exception.substitutions + ...exception.substitutions, ); } } @@ -83,7 +83,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI `Found empty trigger on %o At least one mode must be specified, options are: %o`, target, - Object.keys(modes) + Object.keys(modes), ); } else { console.error('Unsupported mode "%s" found', selectedMode); @@ -148,7 +148,7 @@ At least one mode must be specified, options are: %o`, return getContainingTextNode( child, searchFor, - isForwardSearching + isForwardSearching, ); } }