Bump ESLint from unsported version to version 9

This commit is contained in:
Julian Stirling 2026-02-18 00:33:26 +00:00
parent 00a96fec4e
commit f4b430071e
6 changed files with 377 additions and 507 deletions

View file

@ -57,7 +57,7 @@ export default {
propertyDescription: function () {
try {
return this.thingDescription(this.thingName).properties[this.propertyName];
} catch (error) {
} catch {
return undefined;
}
},

View file

@ -83,7 +83,7 @@ export default {
if (typeof data === "string") return data;
try {
return JSON.stringify(data, null, 2);
} catch (err) {
} catch {
return String(data);
}
},
@ -97,7 +97,7 @@ export default {
if (error.response.data.detail) {
try {
return error.response.data.detail[0].msg;
} catch (err) {
} catch {
return error.response.data.detail;
}
}