chore(deps): update pre-commit hook pre-commit/mirrors-prettier to v3 (stable) (#2614)

* chore(deps): update pre-commit hook pre-commit/mirrors-prettier to v3

* style: format code using prettier v3.0.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: jo <ljonas@riseup.net>
This commit is contained in:
renovate[bot] 2023-07-06 21:39:05 +02:00 committed by GitHub
parent 74737cf3c4
commit 8c5512cd73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 374 additions and 374 deletions

View file

@ -143,7 +143,7 @@ var AIRTIME = (function (AIRTIME) {
},
function (json) {
var x;
}
},
);
}

View file

@ -36,7 +36,7 @@ var AIRTIME = (function (AIRTIME) {
dateStartId,
timeStartId,
dateEndId,
timeEndId
timeEndId,
);
start = oRange.start;
@ -251,7 +251,7 @@ var AIRTIME = (function (AIRTIME) {
"<i class='icon-white icon-plus'></i>" +
$.i18n._("New Log Entry") +
"</button>" +
"</div>"
"</div>",
);
$menu.append(
@ -271,7 +271,7 @@ var AIRTIME = (function (AIRTIME) {
$.i18n._("Deselect all") +
"</a></li>" +
"</ul>" +
"</div>"
"</div>",
);
$menu.append(
@ -288,7 +288,7 @@ var AIRTIME = (function (AIRTIME) {
$.i18n._("Export as PDF") +
"</a></li>" +
"</ul>" +
"</div>"
"</div>",
);
$menu.append(
@ -296,7 +296,7 @@ var AIRTIME = (function (AIRTIME) {
"<button class='btn btn-small' id='his_trash'>" +
"<i class='icon-white icon-trash'></i>" +
"</button>" +
"</div>"
"</div>",
);
$el.append($menu);
@ -317,7 +317,7 @@ var AIRTIME = (function (AIRTIME) {
};
columns = JSON.parse(
localStorage.getItem("datatables-historyfile-aoColumns")
localStorage.getItem("datatables-historyfile-aoColumns"),
);
oTable = $historyTableDiv.dataTable({
@ -331,7 +331,7 @@ var AIRTIME = (function (AIRTIME) {
fnRowCallback: fnRowCallback,
oLanguage: getDatatablesStrings({
sEmptyTable: $.i18n._(
"No tracks were played during the selected time period."
"No tracks were played during the selected time period.",
),
sInfoEmpty: $.i18n._("Showing 0 to 0 of 0 tracks"),
sInfo: $.i18n._("Showing _START_ to _END_ of _TOTAL_ tracks"),
@ -361,7 +361,7 @@ var AIRTIME = (function (AIRTIME) {
c;
columns = JSON.parse(
localStorage.getItem("datatables-historyitem-aoColumns")
localStorage.getItem("datatables-historyitem-aoColumns"),
);
for (i in columns) {
@ -409,7 +409,7 @@ var AIRTIME = (function (AIRTIME) {
fnRowCallback: fnRowCallback,
oLanguage: getDatatablesStrings({
sEmptyTable: $.i18n._(
"No tracks were played during the selected time period."
"No tracks were played during the selected time period.",
),
sInfoEmpty: $.i18n._("Showing 0 to 0 of 0 tracks"),
sInfo: $.i18n._("Showing _START_ to _END_ of _TOTAL_ tracks"),
@ -562,14 +562,14 @@ var AIRTIME = (function (AIRTIME) {
".his-timerange .ui-button",
function (ev) {
$(this).addClass("ui-state-hover");
}
},
);
$historyContentDiv.on(
"mouseleave",
".his-timerange .ui-button",
function (ev) {
$(this).removeClass("ui-state-hover");
}
},
);
oBaseDatePickerSettings = {
@ -624,7 +624,7 @@ var AIRTIME = (function (AIRTIME) {
function (json) {
makeHistoryDialog(json.dialog);
},
"json"
"json",
);
});
@ -791,7 +791,7 @@ var AIRTIME = (function (AIRTIME) {
redrawTables();
}
},
"json"
"json",
);
});
@ -839,7 +839,7 @@ var AIRTIME = (function (AIRTIME) {
redrawTables();
}
},
"json"
"json",
);
});
@ -901,7 +901,7 @@ var AIRTIME = (function (AIRTIME) {
dateStartId,
timeStartId,
dateEndId,
timeEndId
timeEndId,
);
}
@ -981,7 +981,7 @@ var AIRTIME = (function (AIRTIME) {
function (json) {
makeHistoryDialog(json.dialog);
},
"json"
"json",
);
};

View file

@ -43,7 +43,7 @@ var AIRTIME = (function (AIRTIME) {
editUrl: editUrl,
defaultUrl: defaultUrl,
removeUrl: removeUrl,
})
}),
);
return $li;
@ -75,10 +75,10 @@ var AIRTIME = (function (AIRTIME) {
$newLi = $a.parents("li");
$oldLi.replaceWith(
createItemLi($oldLi.data("template"), $oldLi.data("name"), false)
createItemLi($oldLi.data("template"), $oldLi.data("name"), false),
);
$newLi.replaceWith(
createItemLi($newLi.data("template"), $newLi.data("name"), true)
createItemLi($newLi.data("template"), $newLi.data("name"), true),
);
$.post(url, function () {