Skip to content

Instantly share code, notes, and snippets.

View ozwaldorf's full-sized avatar
:shipit:
Dancing in the moonlight

ozwaldorf

:shipit:
Dancing in the moonlight
View GitHub Profile
@qti3e
qti3e / README.md
Last active June 19, 2024 12:38
List of file signatures and mime types based on file extensions
@ozwaldorf
ozwaldorf / pre-push
Last active December 9, 2023 12:48
Rust Git Hook
#!/usr/bin/bash
HOOK="$(basename "$0")"
FILETYPE=".rs\|Cargo.toml\|Cargo.lock"
# comment and uncomment the steps that should be ran depending on commit/push/etc
STEPS=(
"cargo fmt --check"
"cargo clippy --all-features --all-targets -- -Dclippy::all -Dwarnings"
"cargo test --all"