ytdl-sub/tools/linter
2022-04-29 06:44:47 +00:00

13 lines
No EOL
263 B
Text
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