Use ESLint

This commit is contained in:
prototypa
2022-09-11 03:04:15 -04:00
parent 13dca5de5a
commit 252d6bf08b
21 changed files with 65 additions and 29 deletions

View File

@ -2,7 +2,9 @@ const load = async function () {
let images = [];
try {
images = import.meta.glob("~/assets/images/**");
} catch (e) {}
} catch (e) {
// continue regardless of error
}
return images;
};