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 68b0dd1 commit 1d4cc64Copy full SHA for 1d4cc64
Makefile
@@ -114,6 +114,12 @@ in-container/manage:
114
in-container/tests:
115
$(CONTAINER_TEST_CMD) -vvv
116
117
+in-container/lint:
118
+ cd intbot && ruff check .
119
+
120
+in-container/type-check:
121
+ cd intbot && mypy intbot
122
123
124
# Docker management targets
125
# =========================
@@ -127,6 +133,10 @@ docker/run/gunicorn:
127
133
docker/run/tests:
128
134
$(DOCKER_RUN) make in-container/tests
129
135
136
+docker/run/lint:
137
+ $(DOCKER_RUN) make in-container/lint
138
+ $(DOCKER_RUN) make in-container/type-check
139
130
140
131
141
# Deploymenet targets
132
142
# ====================
0 commit comments