format the whole project

This commit is contained in:
Tamo
2021-06-16 18:33:33 +02:00
parent ba30cef987
commit 9716fb3b36
68 changed files with 3327 additions and 2336 deletions

11
script/qc_loop.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
export RUST_BACKTRACE=1
while true
do
cargo test qc_ --release -- --nocapture
if [[ x$? != x0 ]] ; then
exit $?
fi
done