aboutsummaryrefslogtreecommitdiff
path: root/eslint.config.js
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-04-22 08:32:07 +0530
committerBobby <[email protected]>2026-04-22 08:32:07 +0530
commit8a5e40f778de2bc82a4fc261d9c0923fd3ab5a63 (patch)
treec8df32d7104c784ed70a9e7541a2548762108317 /eslint.config.js
parent8dc6d80aefb11cd3f2ef4fac4e34e8768eb9601b (diff)
downloadhollowdark-8a5e40f778de2bc82a4fc261d9c0923fd3ab5a63.tar.xz
hollowdark-8a5e40f778de2bc82a4fc261d9c0923fd3ab5a63.zip
Add Credits screen with initial font and audio attributions
Diffstat (limited to 'eslint.config.js')
-rw-r--r--eslint.config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/eslint.config.js b/eslint.config.js
index 71da530..84ecd6d 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -15,6 +15,7 @@ const gameplayDirectories = [
'birth/**/*.{ts,js,svelte}',
'death/**/*.{ts,js,svelte}',
'continuation/**/*.{ts,js,svelte}',
+ 'credits/**/*.{ts,js,svelte}',
'worldgen/**/*.{ts,js,svelte}',
'persistence/**/*.{ts,js,svelte}',
'rng/**/*.{ts,js,svelte}',
@@ -94,5 +95,11 @@ export default ts.config(
'no-restricted-syntax': 'off',
'@typescript-eslint/no-explicit-any': 'off'
}
+ },
+ {
+ files: ['lib/screens/CreditsScreen.svelte'],
+ rules: {
+ 'svelte/no-navigation-without-resolve': 'off'
+ }
}
)