Skip to content

Commit

Permalink
deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nleanba committed Dec 20, 2024
1 parent c3054e4 commit 71f7405
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
18 changes: 8 additions & 10 deletions dist/404.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Synospecies: 404</title>
</head>
<body>

</body>
</html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0; url=/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Synospecies: 404</title>
</head>
<body></body>
</html>
2 changes: 1 addition & 1 deletion dist/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="advanced.css" />
<script src="./advanced.js" type="module"></script>
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.ico" />
</head>

<body>
Expand Down
7 changes: 3 additions & 4 deletions dist/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
}

@keyframes high-light {

10%,
50% {
background: var(--highlight-background);
Expand Down Expand Up @@ -247,7 +246,7 @@ syno-name {
grid-auto-flow: column;
grid-template-columns: 1fr;
align-items: center;
gap: .25rem;
gap: 0.25rem;
}
}

Expand Down Expand Up @@ -339,7 +338,7 @@ ul {
padding: 0;
position: relative;

&>svg {
& > svg {
height: 1rem;
margin: 0;
}
Expand Down Expand Up @@ -373,4 +372,4 @@ ul {

.gray {
color: #666666;
}
}
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
crossorigin="anonymous"
/>
<script src="./index.js"></script>
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.ico" />
</head>

<body>
Expand Down
12 changes: 8 additions & 4 deletions src/taxomplete.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
declare module 'taxomplete' {
declare module "taxomplete" {
export default class Taxomplete {
constructor (element: HTMLInputElement, endpoint: any /* This should be `SparqlEndpoint` but that creates a loop */);
[key: string]: any
constructor(
element: HTMLInputElement,
endpoint:
any, /* This should be `SparqlEndpoint` but that creates a loop */
);
[key: string]: any;
}
}
}

0 comments on commit 71f7405

Please sign in to comment.