chore(tools): update command line for isort to follow the 100 line length

This commit is contained in:
Arthur Meyre
2021-09-23 10:50:35 +02:00
parent 9a4ae6e443
commit 86052fa43d
8 changed files with 8 additions and 41 deletions

View File

@@ -37,7 +37,7 @@ do
done
for SRC_DIR in "${DIRS[@]}"; do
isort --profile black ${CHECK:+"$CHECK"} "${SRC_DIR}"
isort -l 100 --profile black ${CHECK:+"$CHECK"} "${SRC_DIR}"
((FAILURES+=$?))
black -l 100 ${CHECK:+"$CHECK"} "${SRC_DIR}"
((FAILURES+=$?))