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 b40eae1 commit 8baaac0Copy full SHA for 8baaac0
bin/lint.sh
@@ -3,7 +3,13 @@
3
dir=$(dirname "$0")
4
cd "$dir/.."
5
6
+exitCode=0
7
black src tests
8
+code=$?; test $code -eq 0 || exitCode=$code
9
isort src tests
10
11
python -m flake8 src tests
12
13
validate-pyproject pyproject.toml
14
15
+exit $exitCode
0 commit comments