@naturalcycles/dev-lib 20.1.4 → 20.1.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.
@@ -26,6 +26,7 @@ export default {
26
26
  'vitest/prefer-spy-on': 2,
27
27
  'vitest/prefer-strict-boolean-matchers': 2,
28
28
  'vitest/prefer-to-be': 2,
29
+ 'vitest/prefer-called-exactly-once-with': 0, // todo: enable
29
30
  'vitest/prefer-to-contain': 2,
30
31
  'vitest/prefer-to-have-length': 2,
31
32
  'vitest/prefer-vi-mocked': 2,
@@ -65,7 +65,7 @@ if (eslintConfigPath) {
65
65
  let oxlintCmd = undefined
66
66
 
67
67
  if (oxlintConfigPath) {
68
- oxlintCmd = ['oxlint', '--fix', '--fix-suggestions', '--fix-dangerously', '--max-warnings=1']
68
+ oxlintCmd = ['oxlint', '--fix', '--fix-suggestions', '--fix-dangerously', '--max-warnings=0']
69
69
  .filter(Boolean)
70
70
  .join(' ')
71
71
  }
package/dist/lint.util.js CHANGED
@@ -141,7 +141,7 @@ export function runOxlint(fix = true) {
141
141
  name: ['oxlint', !fix && '--no-fix'].filter(Boolean).join(' '),
142
142
  args: [
143
143
  // '--report-unused-disable-directives',
144
- '--max-warnings=1',
144
+ '--max-warnings=0',
145
145
  fix && '--fix',
146
146
  fix && '--fix-suggestions',
147
147
  fix && '--fix-dangerously',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.1.4",
4
+ "version": "20.1.5",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^20",