@naturalcycles/dev-lib 20.34.1 → 20.34.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.
@@ -57,7 +57,7 @@ if (oxlintConfigPath) {
57
57
  '--type-check',
58
58
  '--fix',
59
59
  '--fix-suggestions',
60
- // '--fix-dangerously', // disabled, too unsafe
60
+ '--fix-dangerously',
61
61
  '--max-warnings=0',
62
62
  ]
63
63
  .filter(Boolean)
@@ -209,7 +209,7 @@ export function runOxlint(fix = true) {
209
209
  '--type-check',
210
210
  fix && '--fix',
211
211
  fix && '--fix-suggestions',
212
- // fix && '--fix-dangerously', // decided to disable, too unsafe
212
+ fix && '--fix-dangerously',
213
213
  ].filter(_isTruthy),
214
214
  shell: false,
215
215
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.34.1",
4
+ "version": "20.34.2",
5
5
  "dependencies": {
6
6
  "prompts": "^2",
7
7
  "@naturalcycles/js-lib": "^15",