mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2025-01-07 10:26:45 +03:00
Merge pull request #1397 from gitbutlerapp/Add-cargo-check-and-clippy
prettify scripts
This commit is contained in:
commit
d721bc7bcb
@ -1,17 +1,39 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo ------ cargo check
|
set -o errexit
|
||||||
cargo c --all-features
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
echo ------ cargo clippy
|
function rust() {
|
||||||
cargo clippy --all-features
|
cargo fmt --check
|
||||||
cargo clippy --tests
|
cargo sort -c -w
|
||||||
|
cargo clippy --all-features --tests
|
||||||
|
cargo test
|
||||||
|
}
|
||||||
|
|
||||||
echo ------ cargo test
|
function node() {
|
||||||
cargo t
|
pnpm lint
|
||||||
|
pnpm check
|
||||||
|
}
|
||||||
|
|
||||||
echo ------ cargo fmt
|
if [[ "$#" -eq 0 ]]; then
|
||||||
cargo fmt --check
|
set -o xtrace
|
||||||
|
rust
|
||||||
echo ------ cargo sort
|
node
|
||||||
cargo sort -c -w
|
else
|
||||||
|
case "$1" in
|
||||||
|
rust)
|
||||||
|
set -o xtrace
|
||||||
|
rust
|
||||||
|
;;
|
||||||
|
node)
|
||||||
|
set -o xtrace
|
||||||
|
node
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Invalid argument: $1"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Run pnpm format
|
|
||||||
pnpm format
|
|
||||||
|
|
||||||
# Change directory to src-tauri
|
|
||||||
cd src-tauri
|
|
||||||
|
|
||||||
# Run cargo fmt
|
|
||||||
cargo fmt
|
|
||||||
|
|
35
scripts/format.sh
Executable file
35
scripts/format.sh
Executable file
@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
function rust() {
|
||||||
|
cargo fmt
|
||||||
|
}
|
||||||
|
|
||||||
|
function node() {
|
||||||
|
pnpm format
|
||||||
|
}
|
||||||
|
|
||||||
|
if [[ "$#" -eq 0 ]]; then
|
||||||
|
set -o xtrace
|
||||||
|
rust
|
||||||
|
node
|
||||||
|
else
|
||||||
|
case "$1" in
|
||||||
|
rust)
|
||||||
|
set -o xtrace
|
||||||
|
rust
|
||||||
|
;;
|
||||||
|
node)
|
||||||
|
set -o xtrace
|
||||||
|
node
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Invalid argument: $1"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
exit 0
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user