summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-03-22 13:02:25 +0100
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2024-03-22 13:30:41 +0100
commit45690d23268493c7b0436f63d56cf28434e546fe (patch)
tree19b61c93920d48fcaeb64dc55d91444ca2303079 /Makefile
parent9bab3c87825b4284b3e6f2be3fa9e89da7723116 (diff)
Makefile: Add ruff targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d6cae4e..9ae2c2e 100644
--- a/Makefile
+++ b/Makefile
@@ -10,9 +10,12 @@ build:
fmt:
gofumpt -w .
+ ruff format wrappers/python/eduvpn_common
lint:
golangci-lint run -E stylecheck,revive,gocritic ./...
+ ruff check wrappers/python/eduvpn_common
+ ruff format --check wrappers/python/eduvpn_common
cli:
go build -o eduvpn-common-cli ./cmd/cli