redlint 3.13.1 → 3.14.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,9 @@
1
+ 2024.04.09, v3.14.0
2
+
3
+ feature:
4
+ - af1db00 redlint: eslint v9.0.0
5
+ - 9d621ab redlint: @putout/plugin-filesystem v5.0.0
6
+
1
7
  2024.03.01, v3.13.1
2
8
 
3
9
  feature:
package/bin/redlint.js CHANGED
@@ -2,10 +2,7 @@
2
2
 
3
3
  import {join} from 'node:path';
4
4
  import process from 'node:process';
5
- import {
6
- readFile,
7
- writeFile,
8
- } from 'node:fs/promises';
5
+ import {readFile, writeFile} from 'node:fs/promises';
9
6
  import {lintJSON} from 'putout/lint/json';
10
7
  import formatterCodeFrame from '@putout/formatter-codeframe';
11
8
  import formatterDump from '@putout/formatter-dump';
@@ -28,6 +25,7 @@ import {chooseConvert} from '../lib/convert/index.js';
28
25
  import {convert} from '../lib/convert/convert.js';
29
26
  import {masterConvert} from '../lib/convert/master.js';
30
27
  import {askFilename} from '../lib/dialog.js';
28
+ import {bundle} from '@putout/bundler';
31
29
  import {
32
30
  isScan,
33
31
  isScanDebug,
@@ -49,7 +47,6 @@ import {
49
47
  isExit,
50
48
  isBundleDebug,
51
49
  } from '../lib/menu.js';
52
- import {bundle} from '@putout/bundler';
53
50
 
54
51
  const {log} = console;
55
52
  const {exit} = process;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "3.13.1",
3
+ "version": "3.14.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -38,7 +38,7 @@
38
38
  "@putout/formatter-dump": "^5.0.0",
39
39
  "@putout/operator-filesystem": "^4.0.1",
40
40
  "@putout/operator-json": "^2.0.0",
41
- "@putout/plugin-filesystem": "^4.0.0",
41
+ "@putout/plugin-filesystem": "^5.0.0",
42
42
  "@putout/plugin-nodejs": "^11.0.0",
43
43
  "@putout/processor-filesystem": "^4.0.0",
44
44
  "chalk": "^5.3.0",
@@ -63,8 +63,7 @@
63
63
  "devDependencies": {
64
64
  "@putout/test": "^9.0.0",
65
65
  "c8": "^9.1.0",
66
- "eslint": "^8.0.1",
67
- "eslint-plugin-n": "^16.0.0",
66
+ "eslint": "^9.0.0",
68
67
  "eslint-plugin-putout": "^22.0.0",
69
68
  "estree-to-babel": "^9.0.0",
70
69
  "just-kebab-case": "^4.2.0",