Skip to content

Commit fff0f44

Browse files
committed
chore(prettier): update config and format code
1 parent f7614df commit fff0f44

File tree

3 files changed

+9
-40
lines changed

3 files changed

+9
-40
lines changed

biome.json

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,30 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.8.2/schema.json",
3-
"organizeImports": {
4-
"enabled": true,
3+
"files": {
54
"ignore": [
65
"**/pnpm-lock.yaml",
76
"**/dist/**",
87
"**/node_modules/**",
98
"**/assets/bundled/**",
109
"*.min.json",
11-
"**/.astro/"
10+
"**/*.astro"
1211
]
1312
},
13+
"organizeImports": {
14+
"enabled": true
15+
},
1416
"linter": {
1517
"enabled": true,
1618
"rules": {
1719
"recommended": true
18-
},
19-
"ignore": [
20-
"**/pnpm-lock.yaml",
21-
"**/dist/**",
22-
"**/node_modules/**",
23-
"**/assets/bundled/**",
24-
"*.min.json",
25-
"**/.astro/"
26-
]
20+
}
2721
},
2822
"formatter": {
2923
"indentStyle": "space",
3024
"indentWidth": 2,
3125
"lineEnding": "lf",
3226
"lineWidth": 85,
33-
"attributePosition": "auto",
34-
"ignore": [
35-
"**/pnpm-lock.yaml",
36-
"**/dist/**",
37-
"**/node_modules/**",
38-
"**/assets/bundled/**",
39-
"*.min.json",
40-
"**/.astro/"
41-
]
27+
"attributePosition": "auto"
4228
},
4329
"javascript": {
4430
"formatter": {

src/pages/settings.astro

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,7 @@ import ArrowButton from "@/components/ArrowButton.astro";
33
import Dropdown from "@/components/Dropdown.astro";
44
import SettingsCard from "@/components/SettingsCard.astro";
55
import Layout from "@/layouts/Main.astro";
6-
import {
7-
ExternalLink,
8-
EyeOff,
9-
Info,
10-
Search,
11-
Settings2,
12-
Siren,
13-
SwatchBook,
14-
} from "lucide-astro";
6+
import { ExternalLink, EyeOff, Info, Search, Settings2, Siren, SwatchBook } from "lucide-astro";
157
---
168

179
<Layout>

src/pages/tabs.astro

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
---
22
import Layout from "@/layouts/Layout.astro";
3-
import {
4-
ArrowLeft,
5-
ArrowRight,
6-
Home,
7-
Loader2,
8-
Maximize2,
9-
Plus,
10-
RotateCw,
11-
Star,
12-
} from "lucide-astro";
3+
import { ArrowLeft, ArrowRight, Home, Loader2, Maximize2, Plus, RotateCw, Star } from "lucide-astro";
134
---
145

156
<script src="@/lib/tabs.ts"></script>

0 commit comments

Comments
 (0)