@naturalcycles/dev-lib 20.22.0 → 20.22.1

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.
@@ -21,6 +21,7 @@
21
21
  { "blankLine": "always", "prev": "*", "next": "class" }
22
22
  ],
23
23
  "@stylistic/lines-between-class-members": [2, "always", { "exceptAfterSingleLine": true }],
24
+ "complexity": [2, { "max": 40 }],
24
25
  "no-this-alias": 0,
25
26
  "no-async-promise-executor": 0,
26
27
  "no-standalone-expect": 0,
@@ -262,6 +263,7 @@
262
263
  }
263
264
  ],
264
265
  "vitest/no-duplicate-hooks": 2,
266
+ "vitest/consistent-vitest-vi": 2,
265
267
  "vitest/no-focused-tests": 2,
266
268
  "vitest/no-identical-title": 2,
267
269
  "vitest/no-test-return-statement": 2,
@@ -278,6 +280,7 @@
278
280
  "vitest/prefer-to-be": 2,
279
281
  "vitest/prefer-to-contain": 2,
280
282
  "vitest/consistent-test-filename": 2,
283
+ "vitest/warn-todo": 0,
281
284
  "jest/consistent-test-it": [
282
285
  2,
283
286
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.22.0",
4
+ "version": "20.22.1",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@eslint/js": "^9",
package/readme.md CHANGED
@@ -200,10 +200,3 @@ These files are meant to be extended in target project, so act as _recommended d
200
200
  - `biome.jsonc`
201
201
  - `jest.config.js`
202
202
  - `vitest.config.mjs`
203
-
204
- ## eslint
205
-
206
- Presence of `jest` is detected by checking if `node_modules/jest` exists.
207
-
208
- If exists - `eslint-plugin-jest` recommended config (plus opinionated `dev-lib`'s rules) are
209
- enabled. Otherwise disabled ( to not cause "jest not found" errors).