flatlint 2.5.0 → 2.6.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.03.14, v2.6.0
2
+
3
+ feature:
4
+ - 47fd356 flatlint: add-missing-round-brace: call-nested
5
+
6
+ 2025.03.11, v2.5.1
7
+
8
+ fix:
9
+ - 03eece9 flatlint: apply-import-order: report
10
+
1
11
  2025.03.11, v2.5.0
2
12
 
3
13
  feature:
@@ -98,4 +98,5 @@ export const replace = () => ({
98
98
  '{__a} = __expr': '({__a} = __expr)',
99
99
  '__a;': '__a);',
100
100
  '}': '})',
101
+ '__a(__b(__c);': '__a(__b(__c));',
101
102
  });
@@ -1,4 +1,4 @@
1
- export const report = () => `Add 'const' to 'export'`;
1
+ export const report = () => `Apply import order`;
2
2
 
3
3
  export const replace = () => ({
4
4
  'import {__a}, __b from "__c"': 'import __b, {__a} from "__c"',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flatlint",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "description": "JavaScript tokens-based linter",
5
5
  "main": "lib/flatlint.js",
6
6
  "type": "module",