10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname $(dirname "$0"))" || exit
|
|
|
|
TARGET="gallery"
|
|
|
|
poetry run pylint $TARGET
|
|
poetry run isort $TARGET --check-only
|
|
poetry run black $TARGET -q --check --diff
|