We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 435fafb commit b7c9bd2Copy full SHA for b7c9bd2
1 file changed
test/fixtures/files/script2.js
@@ -1,4 +1,11 @@
1
-"use strict";
+/* eslint strict:off */
2
+(function () {
3
+ "use strict";
4
-// This file should not get updated because version 3.2.1
-// and v8.9.10 don't match the old version number
5
+ // This file should not get updated because
6
+ // version 3.2.1 and v8.9.10 don't match the old version number
7
+ let version = "3.2.1";
8
+ let someNumbers = "8.9.10";
9
+ return version + someNumbers;
10
+
11
+}());
0 commit comments