We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d303243 commit f2a1becCopy full SHA for f2a1bec
project_common.mk
@@ -23,6 +23,14 @@ CURR_DIR_BASE_NAME = $(notdir $(CURDIR))
23
all:
24
echo "Nothing here yet."
25
26
+.PHONY: lint
27
+lint:
28
+ (cd ../..; .venv/bin/ruff check packages/$(CURR_DIR_BASE_NAME))
29
+
30
+.PHONY: lint-fix
31
+lint-fix:
32
+ (cd ../..; .venv/bin/ruff check packages/$(CURR_DIR_BASE_NAME) --fix)
33
34
.PHONY: format
35
format:
36
(cd ../..; .venv/bin/ruff format --check packages/$(CURR_DIR_BASE_NAME))
0 commit comments