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 017f2f1 commit 37397e7Copy full SHA for 37397e7
bin/lint.sh
@@ -3,7 +3,13 @@
3
dir=$(dirname "$0")
4
cd "$dir/.."
5
6
+exitCode=0
7
black src tests
-#isort 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