flatlint 1.60.1 → 1.61.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.01.18, v1.61.0
2
+
3
+ feature:
4
+ - f5c2c96 flatlint: convert-comma-to-semicolon: assign
5
+
6
+ 2025.01.18, v1.60.2
7
+
8
+ fix:
9
+ - a061abb flatlint: engine-loader v15.1.1
10
+
1
11
  2025.01.18, v1.60.1
2
12
 
3
13
  feature:
@@ -41,6 +41,7 @@ export const replace = () => ({
41
41
  '__x __a = __expr,': '__x __a = __expr;',
42
42
  '__a(__args),': '__a(__args);',
43
43
  'return __expr,': 'return __expr;',
44
+ '__a.__b = __expr,': '__a.__b = __expr;',
44
45
  });
45
46
 
46
47
  const check = ({__x}, path) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flatlint",
3
- "version": "1.60.1",
3
+ "version": "1.61.0",
4
4
  "description": "JavaScript tokens-based linter",
5
5
  "main": "lib/flatlint.js",
6
6
  "type": "module",
@@ -80,7 +80,7 @@
80
80
  "node": ">=18"
81
81
  },
82
82
  "dependencies": {
83
- "@putout/engine-loader": "^15.0.1",
83
+ "@putout/engine-loader": "^15.1.1",
84
84
  "debug": "^4.4.0",
85
85
  "js-tokens": "^9.0.1",
86
86
  "putout": "^37.0.0"