ytdl-sub/tools/linter
2023-12-14 23:18:00 -08:00

11 lines
No EOL
201 B
Text
Executable file

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