aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 72058bef59e212f022b9fc4e212b04932b2c37d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
alias gen := generate
alias fmt := format

generate target="client":
  rye run ariadne-codegen {{ target }}

run *arguments:
  rye run oguri {{ arguments }}

format:
  rye run yapf src/oguri --recursive --in-place --style yapf

check:
  rye run ruff check src/oguri