redlint 2.1.0 → 2.1.2

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
+ 2023.12.18, v2.1.2
2
+
3
+ fix:
4
+ - 8f947e8 redlint: drop final log
5
+
6
+ 2023.12.18, v2.1.1
7
+
8
+ fix:
9
+ - f9fd29f redlint: fix
10
+
1
11
  2023.12.15, v2.1.0
2
12
 
3
13
  fix:
package/bin/redlint.js CHANGED
@@ -49,7 +49,12 @@ if (arg === 'lint') {
49
49
  process.exit();
50
50
  }
51
51
 
52
- if (arg === 'fix')
52
+ if (arg === 'fix') {
53
+ await masterLint(filesystem, {
54
+ fix: true,
55
+ });
56
+
53
57
  process.exit();
58
+ }
54
59
 
55
60
  await writeFile('.filesystem.json', filesystem);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redlint",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Lint Filesystem with 🐊Putout",