Disable @typescript-eslint/no-explicit-any, update index.html

This commit is contained in:
wearrrrr 2024-07-13 20:04:07 -05:00
parent 738198f954
commit 2bf6a726ec
2 changed files with 5 additions and 4 deletions

View file

@ -22,6 +22,7 @@
"prefer-const": "warn",
"no-unreachable": "warn",
"no-undef": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}

View file

@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="prefetch" href="/scram/scramjet.worker.js">
<link rel="prefetch" href="/scram/scramjet.bundle.js">
<link rel="prefetch" href="/scram/scramjet.worker.js" type="module">
<link rel="prefetch" href="/scram/scramjet.shared.js" type="module">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Inter+Tight:ital,wght@0,100..900;1,100..900&amp;family=Inter:wght@100..900&amp;display=swap&amp;" rel="stylesheet">
<style>
body, html, #app {
@ -22,8 +22,8 @@
<body>
<script src="https://unpkg.com/dreamland"></script>
<script src="/baremux/index.js" defer></script>
<script src="/scram/scramjet.codecs.js" type="module"></script>
<script src="/scram/scramjet.config.js" type="module"></script>
<script src="ui.js" defer></script>
<script src="/scram/scramjet.codecs.js"></script>
<script src="/scram/scramjet.config.js"></script>
</body>
</html>