Skip to content

Commit

Permalink
feat: add Justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmcgee committed Sep 27, 2022
1 parent 9b90237 commit dbf29cc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# just is a handy way to save and run project-specific commands.
#
# https://github.com/casey/just

# list all tasks
default:
just --list

# Format the code
fmt:
treefmt
alias f := fmt

# Start IDEA in this folder
idea:
nohup idea-ultimate . > /dev/null 2>&1 &

# Start VsCode in this folder
code:
code .

# Checks the source with nix
nix-check:
nix flake check

0 comments on commit dbf29cc

Please sign in to comment.