mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-27 15:14:36 +00:00
Fixes ESLint errors (#9668)
* fix: apply automatic eslint fixes * lint: allow hashbang comment for tiddlywiki.js * lint: first back of manual lint fixes for unused vars * lint: added more fixes for unused vars * lint: missed files * lint: updated eslint config with selected rules from #9669
This commit is contained in:
@@ -11,7 +11,7 @@ exports.name = "html";
|
||||
exports.serialize = function(tree,serialize) {
|
||||
var tag = tree.tag;
|
||||
var attributes = tree.orderedAttributes.map(function(attribute) {
|
||||
return $tw.utils.serializeAttribute(attribute);
|
||||
return $tw.utils.serializeAttribute(attribute);
|
||||
}).join(" ");
|
||||
// Children
|
||||
var children = tree.children ? serialize(tree.children) : "";
|
||||
|
||||
Reference in New Issue
Block a user