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 56be76d commit ee19b00Copy full SHA for ee19b00
.gitignore
@@ -245,3 +245,4 @@ playwright/.cache/
245
playwright/.auth/
246
247
out/
248
+lib/bashunit
.pre-commit-config.yaml
@@ -4,7 +4,7 @@ exclude: |
4
docs
5
)$
6
repos:
7
- - repo: api
+ - repo: local
8
hooks:
9
- id: black
10
name: black
@@ -27,8 +27,10 @@ repos:
27
entry: cd api/ && ./run-tests.sh
28
language: system
29
types: [bash]
30
- - repo: frontend
31
32
- id: lint
33
+ language: system
34
+ types: [bash]
35
name: lint
36
entry: cd webapp/ && npm run lint
api/run-cli.sh
@@ -0,0 +1,4 @@
1
+#!/bin/bash
2
+
3
+export PYTHONPATH="$(pwd):$PYTHONPATH"
+poetry run smm "$@"
0 commit comments