diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-27 06:35:40 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-27 06:35:40 +0100 |
commit | e2a8648fa82d1f3199e257eb7b241267d10c1c80 (patch) | |
tree | ea1dc505593163d18588a1cc1834a1baba17b3cf | |
parent | 7f9f409b9a92810ffacd6a8ca11d93b4715b5b90 (diff) |
add check target to Makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4,6 +4,10 @@ all: ./check_checkers.py ./check_loaders.py > dist/loaders.html +check: + black -S --check check_checkers.py + pyright + clean: rm -r dist rm cache.json |