mirror of
https://github.com/LukeHagar/ytdl-sub.git
synced 2025-12-06 04:22:12 +00:00
13 lines
265 B
Plaintext
Executable File
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 |