redlint 5.0.4 → 5.0.5

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.
Files changed (3) hide show
  1. package/ChangeLog +5 -0
  2. package/README.md +3 -5
  3. package/package.json +2 -2
package/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2026.01.18, v5.0.5
2
+
3
+ feature:
4
+ - 9be0ae3 redlint: @putout/plugin-nodejs v19.1.0
5
+
1
6
  2026.01.11, v5.0.4
2
7
 
3
8
  feature:
package/README.md CHANGED
@@ -60,16 +60,14 @@ You can also generate `.filesystem.json` file with `putout generate`.
60
60
 
61
61
  To add new rule `create-file` located in plugin `custom` for **RedLint** write a new 🐊**Putout** rule [Scanner](https://github.com/coderaiser/putout/tree/master/packages/engine-runner#scanner). And add it to `.putout.json`:
62
62
 
63
- ```js
63
+ ```json
64
64
  {
65
65
  "match": {
66
66
  ".filesystem": {
67
67
  "custom/create-file": "on"
68
68
  }
69
- }
70
- "plugins": [
71
- "custom"
72
- ]
69
+ },
70
+ "plugins": ["custom"]
73
71
  }
74
72
  ```
75
73
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",
@@ -40,7 +40,7 @@
40
40
  "@putout/operator-json": "^3.1.0",
41
41
  "@putout/plugin-eslint": "^15.0.0",
42
42
  "@putout/plugin-filesystem": "^12.0.0",
43
- "@putout/plugin-nodejs": "^18.1.0",
43
+ "@putout/plugin-nodejs": "^19.1.0",
44
44
  "@putout/plugin-react": "^3.0.0",
45
45
  "@putout/processor-filesystem": "^7.0.1",
46
46
  "chalk": "^5.3.0",