Files
ytdl-sub/tools/linter
2022-04-29 08:08:58 +00:00

13 lines
265 B
Plaintext
Executable File

# Run within root directory
if [[ $1 = "check" ]]; then
isort . --check-only --diff \
&& black . --check \
&& pylint src/ \
&& pydocstyle src/*
else
isort .
black .
pylint src/
pydocstyle src/*
fi