flatlint 1.105.0 → 1.106.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ChangeLog CHANGED
@@ -1,3 +1,13 @@
1
+ 2025.02.10, v1.106.0
2
+
3
+ feature:
4
+ - 9d3ddf2 flatlint: convert-comma-to-semicolon: one import
5
+
6
+ 2025.02.07, v1.105.1
7
+
8
+ fix:
9
+ - 9d76c2c flatlint: convert-comma-to-semicolon: isKeyword: no token
10
+
1
11
  2025.02.06, v1.105.0
2
12
 
3
13
  fix:
@@ -46,6 +46,9 @@ export const match = () => ({
46
46
  return !path.isNextPunctuator([quote, openCurlyBrace]);
47
47
  },
48
48
  '"__a",': (vars, path) => {
49
+ if (!path.isNext())
50
+ return true;
51
+
49
52
  if (path.isNextPunctuator())
50
53
  return false;
51
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flatlint",
3
- "version": "1.105.0",
3
+ "version": "1.106.0",
4
4
  "description": "JavaScript tokens-based linter",
5
5
  "main": "lib/flatlint.js",
6
6
  "type": "module",