We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebbc24 commit c1ed611Copy full SHA for c1ed611
scripts/check_format.sh
@@ -1,5 +1,6 @@
1
#!/bin/bash
2
set -euxo pipefail
3
4
-black . --check
5
-isort . --profile black -c
+# Ignore agents/ because those are all submodules.
+black . --check --exclude agents
6
+isort . --profile black -c --skip agents
scripts/format.sh
-set -euxo pipefail
+set -euo pipefail
-black .
-isort . --profile black
+black . --exclude agents
+isort . --profile black --skip agents
scripts/mypy.sh
@@ -1,2 +1,3 @@
-mypy --config-file scripts/configs/mypy.ini .
+mypy --config-file scripts/configs/mypy.ini . --exclude agents/
0 commit comments