Skip to content

Commit

Permalink
fix: linting and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz committed Aug 23, 2024
1 parent 66b0952 commit 4032bd6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
3 changes: 2 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export default tseslint.config(
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
'prefer-const': 'warn'
'prefer-const': 'warn',
'@typescript-eslint/ban-ts-comment': ['warn', { 'ts-ignore': 'allow-with-description' }]
}
}
)
38 changes: 19 additions & 19 deletions src/views/dash/index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<!doctype html>
<html lang="en">
<head>
<title>Cluck Dash</title>
<link rel="stylesheet" href="./style.css" />
<link rel="shortcut icon" href="/img/favicon.svg" type="image/x-icon" />
</head>
<head>
<title>Cluck Dash</title>
<link rel="stylesheet" href="./style.css" />
<link rel="shortcut icon" href="/img/favicon.svg" type="image/x-icon" />
</head>

<body id="body" onclick="openFullscreen()">
<img src="./logo.svg" id="logo" alt="logo" />
<div id="main">
<div class="cont" id="members"></div>
<div class="cont" id="delphi">
<div id="delphicontent">
<a><h1 id="delphiTitle"></h1></a>
<h3 id="delphiBody"></h3>
<div id="bottom_fade"></div>
<!-- <img class="theimage" src="https://drive.google.com/uc?id=19ysfpPy6dT3m2SD24Cz6A-OuGN89nAkv" />-->
<body id="body" onclick="openFullscreen()">
<img src="./logo.svg" id="logo" alt="logo" />
<div id="main">
<div class="cont" id="members"></div>
<div class="cont" id="delphi">
<div id="delphicontent">
<a><h1 id="delphiTitle"></h1></a>
<h3 id="delphiBody"></h3>
<div id="bottom_fade"></div>
<!-- <img class="theimage" src="https://drive.google.com/uc?id=19ysfpPy6dT3m2SD24Cz6A-OuGN89nAkv" />-->
</div>
</div>
</div>
</div>
</div>
</body>
</body>

<script src="./index.ts"></script>
<script src="./index.ts"></script>
</html>

0 comments on commit 4032bd6

Please sign in to comment.