123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- alias b := build
- alias c := check
- alias t := test
- [private]
- default:
- @just
- build:
- cargo build
- check:
- cargo check
- final-check: lint clippy
- cargo test
- just test
- format:
- cargo fmt
- nixpkgs-fmt $(echo **.nix)
- lint:
- env NO_STASH=true $(git rev-parse
- test: build
- cargo test
- watch:
- env RUST_LOG=${RUST_LOG:-debug} cargo watch -x run
- clippy:
- cargo clippy
- clippy-fix:
- cargo clippy
- semgrep:
- env SEMGREP_ENABLE_VERSION_CHECK=0 \
- semgrep
- [no-exit-message]
- typos *PARAMS:
-
- set -eo pipefail
- export FLAKEBOX_GIT_LS
- FLAKEBOX_GIT_LS="$(git ls-files)"
- export FLAKEBOX_GIT_LS_TEXT
- FLAKEBOX_GIT_LS_TEXT="$(echo "$FLAKEBOX_GIT_LS" | grep -v -E "^db/|\.(png|ods|jpg|jpeg|woff2|keystore|wasm|ttf|jar|ico)\$")"
- if ! echo "$FLAKEBOX_GIT_LS_TEXT" | typos {{PARAMS}}
- >&2 echo "Typos found: Valid new words can be added to '.typos.toml'"
- return 1
- fi
- [no-exit-message]
- typos-fix-all:
- just typos -w
|