commit 86755aeccb6927ce5c627979d4422918747eb943 Author: rm-dr <96270320+rm-dr@users.noreply.github.com> Date: Thu Nov 27 13:26:46 2025 -0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..20bf50e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target +*.ignore +.lycheecache \ No newline at end of file diff --git a/lychee.toml b/lychee.toml new file mode 100644 index 0000000..87353ca --- /dev/null +++ b/lychee.toml @@ -0,0 +1,8 @@ +cache = true +max_cache_age = "2d" + +verbose = "info" + +glob_ignore_case = false +exclude_path = ["./public"] +exclude = ['^http(s)?://localhost', '^file://'] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..218e203 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +hard_tabs = true diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..8fa0b57 --- /dev/null +++ b/typos.toml @@ -0,0 +1,8 @@ +[default] +extend-ignore-re = [ + # Line block with # spellchecker: + "(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on", +] + +[files] +extend-exclude = ["crates/servable/htmx"]