🔥 Remove isort configuration, since we use Ruff now (#1144)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
set -x
|
||||
|
||||
# Sort imports one per line, so autoflake can remove unused imports
|
||||
isort --recursive --force-single-line-imports --apply app
|
||||
sh ./scripts/format.sh
|
@@ -1,6 +1,5 @@
|
||||
#!/bin/sh -e
|
||||
set -x
|
||||
|
||||
autoflake --remove-all-unused-imports --recursive --remove-unused-variables --in-place app --exclude=__init__.py
|
||||
black app
|
||||
isort --recursive --apply app
|
||||
ruff check app scripts --fix
|
||||
ruff format app scripts
|
||||
|
@@ -4,5 +4,5 @@ set -e
|
||||
set -x
|
||||
|
||||
mypy app
|
||||
ruff app
|
||||
ruff check app
|
||||
ruff format app --check
|
||||
|
Reference in New Issue
Block a user