From e126e36dd9bc8160c4f35d208c76ddc57af615e9 Mon Sep 17 00:00:00 2001 From: Andrey Kataev Date: Tue, 30 Sep 2025 14:57:15 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D0=BD=D1=8F=D0=BB?= =?UTF-8?q?=20Makefile=20=D0=BD=D0=B0=20justfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 10 ---------- justfile | 9 +++++++++ 2 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 Makefile create mode 100644 justfile 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..4138b43 --- /dev/null +++ b/justfile @@ -0,0 +1,9 @@ +format: + buf format -w + +lint: + buf format --diff --exit-code + buf lint + +prepare: format lint + @: From 4368f9a0fa571fc5e9026f85c84679661a2488fa Mon Sep 17 00:00:00 2001 From: Andrey Kataev Date: Tue, 30 Sep 2025 14:58:28 +0300 Subject: [PATCH 2/2] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BB=20=D0=BB?= =?UTF-8?q?=D0=B8=D1=88=D0=BD=D0=B8=D0=B9=20=D1=81=D0=B8=D0=BC=D0=B2=D0=BE?= =?UTF-8?q?=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 1 - 1 file changed, 1 deletion(-) diff --git a/justfile b/justfile index 4138b43..618a50e 100644 --- a/justfile +++ b/justfile @@ -6,4 +6,3 @@ lint: buf lint prepare: format lint - @: