get rid of eslint errors, seemingly without things breaking this time

This commit is contained in:
wearrrrr 2024-11-10 14:41:49 -06:00
parent fd7cec815c
commit f8bcd5ae08
22 changed files with 34 additions and 40 deletions

View file

@ -10,10 +10,10 @@ export default function (client: ScramjetClient) {
const log = console.log;
client.Trap("console.log", {
set(ctx, v) {
set(_ctx, _v) {
// is there a legitimate reason to let sites do this?
},
get(ctx) {
get(_ctx) {
return log;
},
});