diff --git a/Makefile b/Makefile deleted file mode 100644 index 15e7f8f..0000000 --- a/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -.PHONY: format lint - -format: - buf format -w - -lint: - buf format --diff --exit-code - buf lint - -dev-check: format lint \ No newline at end of file diff --git a/justfile b/justfile new file mode 100644 index 0000000..618a50e --- /dev/null +++ b/justfile @@ -0,0 +1,8 @@ +format: + buf format -w + +lint: + buf format --diff --exit-code + buf lint + +prepare: format lint