Skip to content

Commit e95187a

Browse files
chore(site): add lint and format commands to justfile
1 parent 528f1d7 commit e95187a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

site/justfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
@just:
33
just --list
44

5+
# Formats the code using cargo fmt
6+
format:
7+
cargo fmt --all
8+
9+
# Runs linter and displays warnings
10+
lint:
11+
cargo clippy --all -- -D warnings
12+
513
# Install dependencies
614
install:
715
npm install

0 commit comments

Comments
 (0)