We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0eb917 commit 49af9d8Copy full SHA for 49af9d8
tests/dep-time-travel.sh
@@ -4,6 +4,12 @@
4
5
npm install --no-save eslint@$ESLINT_VERSION --ignore-scripts || true
6
7
+# completely remove the new typescript parser for ESLint < v5
8
+if [[ "$ESLINT_VERSION" -lt "5" ]]; then
9
+ echo "Removing @typescript-eslint/parser..."
10
+ npm uninstall @typescript-eslint/parser
11
+fi
12
+
13
# use these alternate typescript dependencies for ESLint < v4
14
if [[ "$ESLINT_VERSION" -lt "4" ]]; then
15
echo "Downgrading babel-eslint..."
0 commit comments