whispering/Makefile

31 lines
816 B
Makefile
Raw Normal View History

2022-09-23 10:20:11 +00:00
all: lint_node lint_python
TARGET_DIRS:=./whisper_streaming
flake8:
find $(TARGET_DIRS) | grep '\.py$$' | xargs flake8
black:
find $(TARGET_DIRS) | grep '\.py$$' | xargs black --diff | diff /dev/null -
isort:
2022-09-23 11:05:33 +00:00
find $(TARGET_DIRS) | grep '\.py$$' | xargs isort --diff | diff /dev/null -
2022-09-23 10:20:11 +00:00
pydocstyle:
find $(TARGET_DIRS) | grep -v tests | xargs pydocstyle --ignore=D100,D101,D102,D103,D104,D105,D107,D203,D212
yamllint:
find . \( -name node_modules -o -name .venv \) -prune -o -type f -name '*.yml' -print \
| xargs yamllint --no-warnings
lint_python: flake8 black isort pydocstyle
pyright:
npx pyright
markdownlint:
find . -type d \( -name node_modules -o -name .venv \) -prune -o -type f -name '*.md' -print \
| xargs npx markdownlint --config ./.markdownlint.json
lint_node: markdownlint pyright