redlint 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,8 @@
1
+ 2025.12.30, v4.4.0
2
+
3
+ feature:
4
+ - 60d4ff6 redlint: putout v41.2.0
5
+
1
6
  2025.12.27, v4.3.1
2
7
 
3
8
  feature:
package/lib/lint/lint.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import {transformAsync, parse} from 'putout';
2
- import parseOptions from 'putout/parse-options';
2
+ import {parseOptions} from 'putout/parse-options';
3
3
  import {createProgress} from '@putout/engine-runner/progress';
4
4
  import {deinit, init} from '@putout/operator-filesystem';
5
5
  import {toJS, __filesystem} from '@putout/operator-json';
package/lib/redlint.js CHANGED
@@ -1,11 +1,11 @@
1
- import {opendir as opendirOriginal} from 'node:fs/promises';
2
- import parseOptionsOriginal from 'putout/parse-options';
3
- import ignores from 'putout/ignores';
1
+ import {opendir as _opendir} from 'node:fs/promises';
2
+ import {parseOptions as _parseOptions} from 'putout/parse-options';
3
+ import {ignores} from 'putout/ignores';
4
4
 
5
5
  export const buildTree = async (cwd, overrides = {}) => {
6
6
  const {
7
- parseOptions = parseOptionsOriginal,
8
- opendir = opendirOriginal,
7
+ parseOptions = _parseOptions,
8
+ opendir = _opendir,
9
9
  } = overrides;
10
10
 
11
11
  const options = parseOptions();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "4.3.1",
3
+ "version": "4.4.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -51,7 +51,7 @@
51
51
  "ignore": "^7.0.0",
52
52
  "obligator": "^3.0.0",
53
53
  "ora": "^9.0.0",
54
- "putout": "^41.0.0",
54
+ "putout": "^41.2.0",
55
55
  "strip-ansi": "^7.1.0",
56
56
  "try-to-catch": "^3.0.1"
57
57
  },