mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-14 08:58:09 -05:00
7 lines
334 B
Bash
Executable File
7 lines
334 B
Bash
Executable File
#!/bin/sh -e
|
|
set -x
|
|
|
|
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place docs/src/ fastapi tests --exclude=__init__.py
|
|
black fastapi tests docs/src
|
|
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --thirdparty fastapi --apply fastapi tests docs/src
|