7 lines
326 B
Bash
7 lines
326 B
Bash
|
#!/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
|