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 af8d708 commit 34dd0feCopy full SHA for 34dd0fe
scripts/lint
@@ -4,8 +4,13 @@ set -e
4
5
cd "$(dirname "$0")/.."
6
7
-echo "==> Running lints"
8
-rye run lint
+if [ "$1" = "--fix" ]; then
+ echo "==> Running lints with --fix"
9
+ rye run fix:ruff
10
+else
11
+ echo "==> Running lints"
12
+ rye run lint
13
+fi
14
15
echo "==> Making sure it imports"
16
rye run python -c 'import gitpod'
0 commit comments