Skip to content

Commit 8c90248

Browse files
committed
linter changes
1 parent 9e36b79 commit 8c90248

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

config/lock.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,8 @@
850850
"https://esm.sh/stable/[email protected]/denonext/solid-js.mjs": "4cd2354177e205a27a98777c993dd88769af4d823440f58ab2f2b9f313b410eb",
851851
"https://esm.sh/stable/[email protected]/denonext/web.js": "04191035000f7e52a944717e8094b76fef6aee8216e39bb722a19e3ff895fd3c",
852852
"https://esm.sh/v135/[email protected]/denonext/web.js": "c4f53137d16600468bd48d5847575b5d2f20db14cb1c3b773bc41acb1273e26e",
853-
"https://esm.sh/v135/[email protected]/denonext/seroval.mjs": "ca7833350589a0a822d6b30770c92fc8fe605680d339746ecbe569c6cdcbf307"
853+
"https://esm.sh/v135/[email protected]/denonext/seroval.mjs": "ca7833350589a0a822d6b30770c92fc8fe605680d339746ecbe569c6cdcbf307",
854+
"https://raw.githubusercontent.com/DenoPlayground/lint-plugins/refs/heads/main/src/types/type_colon_spacing.ts": "cab99764f93888688e45a9b6fd08b01d3897f44e5ba09ee78168ca67e85877e4"
854855
},
855856
"workspace": {
856857
"dependencies": [

deno.json

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
]
4040
},
4141
"lint": {
42+
"plugins": [
43+
"https://raw.githubusercontent.com/DenoPlayground/lint-plugins/refs/heads/main/src/types/type_colon_spacing.ts"
44+
],
4245
"rules": {
4346
"tags": [
4447
"recommended"

src/client/app/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import 'index.scss'
2+

src/server/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import pageHandler from './request_handler/page_handler.ts';
44
const rootDirectory = './dist/';
55
const appDirectory = `${rootDirectory}/app/`;
66

7-
const routes: Route[] = [
7+
const routes : Route[] = [
88
{
99
pattern: new URLPattern({ pathname: "/-/:staticAsset*" }),
1010
handler: (request, _info, parameters) => pageHandler(

0 commit comments

Comments
 (0)