typer/scripts/format.sh
Sebastián Ramírez fad33cb49d 🔧 Add scripts
2019-12-24 13:32:25 +01:00

6 lines
326 B
Bash
Executable file

#!/bin/sh -e
set -x
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place docs/src/ typer tests --exclude=__init__.py
black typer tests docs/src
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --thirdparty typer --apply typer tests docs/src