flatlint 5.3.0 → 5.4.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,8 @@
1
+ 2026.04.04, v5.4.0
2
+
3
+ feature:
4
+ - 3043e38 flatlint: remove-useless-assign: function
5
+
1
6
  2026.03.29, v5.3.0
2
7
 
3
8
  feature:
@@ -4,4 +4,5 @@ export const replace = () => ({
4
4
  'import __a = from "__b"': 'import __a from "__b"',
5
5
  'import {__a} = from "__b"': 'import {__a} from "__b"',
6
6
  'import {__a, __b} = from "__c"': 'import {__a, __b} from "__c"',
7
+ 'function __a = (': 'function __a(',
7
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flatlint",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "JavaScript tokens-based linter",
5
5
  "main": "lib/flatlint.js",
6
6
  "type": "module",