flatlint 4.3.1 → 4.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,13 @@
1
+ 2026.01.29, v4.4.0
2
+
3
+ feature:
4
+ - 4ac2646 flatlint: add-missing-squre-brace: before round brace
5
+
6
+ 2026.01.27, v4.3.2
7
+
8
+ fix:
9
+ - 4ee56d0 flatlint: examples
10
+
1
11
  2026.01.27, v4.3.1
2
12
 
3
13
  feature:
package/README.md CHANGED
@@ -375,7 +375,7 @@ const a = class {
375
375
 
376
376
  ```diff
377
377
  -import * as plugin, {CUT} from './plugin.js';
378
- +import as plugin from './plugin.js';
378
+ +import * as plugin from './plugin.js';
379
379
  +const {CUT} = plugin;
380
380
  ```
381
381
 
@@ -7,4 +7,5 @@ export const replace = () => ({
7
7
  '[__array;': '[__array];',
8
8
  '["__a"': '["__a"];',
9
9
  '[;': '[];',
10
+ '__a(__b, ["__c", "__d")': '__a(__b, ["__c", "__d"])',
10
11
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flatlint",
3
- "version": "4.3.1",
3
+ "version": "4.4.0",
4
4
  "description": "JavaScript tokens-based linter",
5
5
  "main": "lib/flatlint.js",
6
6
  "type": "module",