This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
rotini/backend/script/format.sh

10 lines
159 B
Bash

#!/bin/bash
if [ "$FIX" != "1" ]; then
$VENV_BIN/black . --check
$VENV_BIN/pylint ./rotini
return
fi
$VENV_BIN/black .
$VENV_BIN/pylint ./rotini