🔧 Add scripts

This commit is contained in:
Sebastián Ramírez
2021-08-24 16:03:19 +02:00
parent b36c4add7e
commit d7f5b577bc
7 changed files with 47 additions and 0 deletions

6
scripts/format.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh -e
set -x
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place sqlmodel docs_src tests --exclude=__init__.py
black sqlmodel tests docs_src
isort sqlmodel tests docs_src