summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/.eslintrc.cjs
diff options
context:
space:
mode:
authorWolfgang Müller2024-07-13 17:29:33 +0200
committerWolfgang Müller2024-07-22 14:08:40 +0200
commitd297c6310a6a4db8dd7cc3efe6ff59620deadcc0 (patch)
treeb47256337a095cef9df5b6ed9f9dfa5885eab79e /frontend/.eslintrc.cjs
parentf530348de4aa5db05eff44c801af6251200372cf (diff)
downloadhircine-d297c6310a6a4db8dd7cc3efe6ff59620deadcc0.tar.gz
frontend/reader: Show loading indicators
Sometimes images may not load fast enough, resulting in the app being seemingly stuck displaying the same sets of images. Use a timeout to detect when images take too long to load and show a spinner instead.
Diffstat (limited to 'frontend/.eslintrc.cjs')
-rw-r--r--frontend/.eslintrc.cjs3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs
index c204ebe..352fa79 100644
--- a/frontend/.eslintrc.cjs
+++ b/frontend/.eslintrc.cjs
@@ -34,7 +34,8 @@ module.exports = {
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
- '@typescript-eslint/no-unsafe-member-access': 'off'
+ '@typescript-eslint/no-unsafe-member-access': 'off',
+ 'no-undef': 'off'
}
},
{