Skip to content

Commit 88f83d1

Browse files
committed
fix: prettier errors
1 parent 9251b32 commit 88f83d1

File tree

4 files changed

+22
-34
lines changed

4 files changed

+22
-34
lines changed

frontend/index.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="/src/index.css" />
8+
<title>Py013</title>
9+
</head>
310

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<link rel="stylesheet" href="/src/index.css">
9-
<title>Py013</title>
10-
</head>
11-
12-
<body>
13-
<div id="root" class="bg-[#173c5c]"></div>
14-
<script type="module" src="/src/main.tsx"></script>
15-
</body>
16-
17-
</html>
11+
<body>
12+
<div id="root" class="bg-[#173c5c]"></div>
13+
<script type="module" src="/src/main.tsx"></script>
14+
</body>
15+
</html>

frontend/src/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@import "tailwindcss";
2-
@import "tw-animate-css";
1+
@import 'tailwindcss';
2+
@import 'tw-animate-css';
33

44
@custom-variant dark (&:is(.dark *));
55

@@ -121,11 +121,11 @@
121121

122122
/* Custom styles for Py013 */
123123
.hero-bg {
124-
background: linear-gradient(135deg, #173c5c 0%, #2D4A6B 100%);
124+
background: linear-gradient(135deg, #173c5c 0%, #2d4a6b 100%);
125125
}
126126

127127
.code-pattern {
128-
background-image:
128+
background-image:
129129
linear-gradient(90deg, rgba(54, 144, 217, 0.1) 1px, transparent 1px),
130130
linear-gradient(rgba(54, 144, 217, 0.1) 1px, transparent 1px);
131131
background-size: 20px 20px;

frontend/tsconfig.app.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
44
"baseUrl": ".",
55
"paths": {
6-
"@/*": [
7-
"./src/*"
8-
]
6+
"@/*": ["./src/*"]
97
},
108
"target": "ES2022",
119
"useDefineForClassFields": true,
12-
"lib": [
13-
"ES2022",
14-
"DOM",
15-
"DOM.Iterable"
16-
],
10+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
1711
"module": "ESNext",
1812
"skipLibCheck": true,
1913
/* Bundler mode */
@@ -31,7 +25,5 @@
3125
"noFallthroughCasesInSwitch": true,
3226
"noUncheckedSideEffectImports": true
3327
},
34-
"include": [
35-
"src"
36-
]
37-
}
28+
"include": ["src"]
29+
}

frontend/tsconfig.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
"compilerOptions": {
1212
"baseUrl": ".",
1313
"paths": {
14-
"@/*": [
15-
"./src/*"
16-
]
14+
"@/*": ["./src/*"]
1715
}
1816
}
19-
}
17+
}

0 commit comments

Comments
 (0)