Skip to content

Commit 3ad2552

Browse files
committed
feat: rework site
1 parent 44e9200 commit 3ad2552

File tree

177 files changed

+5025
-5072
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+5025
-5072
lines changed

.cursorrules

-106
This file was deleted.

.gitignore

+54-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/git,node,astro,linux,macos,windows
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=git,node,astro,linux,macos,windows
1+
# Created by https://www.toptal.com/developers/gitignore/api/windows,linux,macos,git,node,go,rust,rust-analyzer,svelte,astro
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,linux,macos,git,node,go,rust,rust-analyzer,svelte,astro
33

44
### Astro ###
55
# Gitignore template for Astro projects
@@ -21,6 +21,29 @@
2121
*_LOCAL_*.txt
2222
*_REMOTE_*.txt
2323

24+
### Go ###
25+
# If you prefer the allow list template instead of the deny list, see community template:
26+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
27+
#
28+
# Binaries for programs and plugins
29+
*.exe
30+
*.exe~
31+
*.dll
32+
*.so
33+
*.dylib
34+
35+
# Test binary, built with `go test -c`
36+
*.test
37+
38+
# Output of the go coverage tool, specifically when used with LiteIDE
39+
*.out
40+
41+
# Dependency directories (remove the comment below to include it)
42+
# vendor/
43+
44+
# Go workspace file
45+
go.work
46+
2447
### Linux ###
2548
*~
2649

@@ -209,6 +232,34 @@ dist
209232
# SvelteKit build / generate output
210233
.svelte-kit
211234

235+
### Rust ###
236+
# Generated by Cargo
237+
# will have compiled files and executables
238+
debug/
239+
target/
240+
241+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
242+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
243+
Cargo.lock
244+
245+
# These are backup files generated by rustfmt
246+
**/*.rs.bk
247+
248+
# MSVC Windows builds of rustc generate these, which store debugging information
249+
*.pdb
250+
251+
### rust-analyzer ###
252+
# Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
253+
rust-project.json
254+
255+
256+
### Svelte ###
257+
# gitignore template for the SvelteKit, frontend web component framework
258+
# website: https://kit.svelte.dev/
259+
260+
.svelte-kit/
261+
package
262+
212263
### Windows ###
213264
# Windows thumbnail cache files
214265
Thumbs.db
@@ -235,8 +286,4 @@ $RECYCLE.BIN/
235286
# Windows shortcuts
236287
*.lnk
237288

238-
# End of https://www.toptal.com/developers/gitignore/api/git,node,astro,linux,macos,windows
239-
240-
# Cloudflare wrangler files
241-
.wrangler
242-
.dev.vars
289+
# End of https://www.toptal.com/developers/gitignore/api/windows,linux,macos,git,node,go,rust,rust-analyzer,svelte,astro

.prettierignore

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ node_modules
1818
.parcel-cache
1919
.temp
2020
.docusaurus
21-
.wrangler
2221

2322
# Coverage and test outputs
2423
coverage

.prettierrc

+8-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,17 @@
3838
"proseWrap": "preserve"
3939
}
4040
},
41+
{
42+
"files": ["*.svelte"],
43+
"options": {
44+
"parser": "svelte"
45+
}
46+
},
4147
{
4248
"files": ["*.astro"],
4349
"options": {
44-
"parser": "astro"
50+
"parser": "astro",
51+
"printWidth": 100
4552
}
4653
}
4754
]

.vscode/extensions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// Code quality and formatting
1010
"esbenp.prettier-vscode", // Code formatting for multiple languages
1111
"usernamehw.errorlens", // Inline display of errors and warnings
12-
"oderwat.indent-rainbow", // Makes indentation more visible with colors
1312

1413
// Developer experience
1514
"christian-kohler.path-intellisense", // Autocompletes filenames in imports
@@ -22,6 +21,7 @@
2221

2322
// Framework support
2423
"astro-build.astro-vscode", // Astro support
25-
"bradlc.vscode-tailwindcss" // Tailwind CSS support
24+
"bradlc.vscode-tailwindcss", // TailwindCSS support
25+
"unifiedjs.vscode-mdx" // MDX support
2626
]
2727
}

0 commit comments

Comments
 (0)