Update xo to v1.1.1 (#3485)

This commit is contained in:
Adam Warner
2025-07-11 17:14:58 +01:00
committed by GitHub
7 changed files with 1574 additions and 2204 deletions

View File

@@ -92,7 +92,6 @@ $(() => {
});
});
// eslint-disable-next-line no-unused-vars
function initTable() {
table = $("#clientsTable").DataTable({
processing: true,

View File

@@ -99,7 +99,6 @@ function hideSuggestDomains() {
$("#suggest_domains").slideUp("fast");
}
// eslint-disable-next-line no-unused-vars
function initTable() {
table = $("#domainsTable").DataTable({
processing: true,

View File

@@ -170,7 +170,6 @@ function setTypeIcon(type) {
return `<i class='fa fa-fw ${iconClass}' title='${title}\nClick for details about this list'></i> `;
}
// eslint-disable-next-line no-unused-vars
function initTable() {
table = $("#listsTable").DataTable({
processing: true,

View File

@@ -38,6 +38,7 @@ $.extend($.fn.dataTableExt.oSort, {
cidr = m[3].split("/");
if (cidr.length === 2) {
m.pop();
// eslint-disable-next-line unicorn/prefer-spread
m = m.concat(cidr);
}